-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace checkchange with form-changed
Instead of checking individual inputs for change check whole form for changes
- Loading branch information
1 parent
6d5faea
commit bd9d2d4
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ManageIQ.angular.app.directive('formChanged', function() { | ||
return { | ||
require: "form", | ||
link: function(scope, elem, attr, ctrl) { | ||
var model = function() { | ||
return scope.$eval(ctrl.model || scope.model); | ||
}; | ||
var modelCopy = function() { | ||
return scope.$eval(ctrl.modelCopy || "modelCopy"); | ||
}; | ||
scope.$watchCollection(ctrl.model || scope.model, function() { | ||
if (angular.equals(model(), modelCopy())) { | ||
ctrl.$setPristine(); | ||
} | ||
}); | ||
}, | ||
}; | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters