This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
AriaNg/app/scripts/directives/placeholder.js

18 lines
456 B
JavaScript
Raw Normal View History

2016-05-29 06:43:39 +02:00
(function () {
'use strict';
angular.module("ariaNg").directive('ngPlaceholder', function () {
return {
restrict: 'A',
scope: {
placeholder: '=ngPlaceholder'
},
link: function (scope, elem, attr) {
scope.$watch('placeholder', function () {
elem[0].placeholder = scope.placeholder;
});
}
}
});
})();