%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/addthis/frontend/src/directives/ |
Current File : //var/www/cwg/wp-content/plugins/addthis/frontend/src/directives/validateMatchDrct.js |
appAddThisWordPress.directive('validateMatch', function() { return { require: 'ngModel', scope: { otherModelValue: '=validateMatch' }, link: function(scope, elm, attrs, ctrl) { ctrl.$validators.match = function(modelValue) { return modelValue === scope.otherModelValue; }; scope.$watch('otherModelValue', function() { ctrl.$validate(); }); } }; });