Current Path : /var/www/alh/admin/view/journal2/js/directives/ |
Current File : /var/www/alh/admin/view/journal2/js/directives/j-opt-text.js |
define(['./module'], function(module){ module.directive('jOptText', [function() { return { replace: true, require: '?ngModel', scope: { ngModel: '=' }, restrict: 'E', templateUrl: 'view/journal2/tpl/directives/j-opt-text.html?ver=' + Journal2Config.version, controller: function($scope) { $scope.ngModel = $scope.ngModel || {}; $scope.ngModel.value = $scope.ngModel.value || ''; $scope.reset = function() { $scope.ngModel.value = $scope.ngModel.default; }; } }; }]); });