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

18 lines
457 B
JavaScript

(function () {
'use strict';
angular.module('ariaNg').directive('ngPlaceholder', function () {
return {
restrict: 'A',
scope: {
placeholder: '=ngPlaceholder'
},
link: function (scope, element) {
scope.$watch('placeholder', function () {
element[0].placeholder = scope.placeholder;
});
}
};
});
})();