Files
dss.web/client/app/directives/misc/focus.js
2016-09-16 22:05:45 +01:00

12 lines
370 B
JavaScript

angular.module('dssWebApp')
.directive('showFocus', function ($timeout) {
return function(scope, element, attrs) {
scope.$watch(attrs.showFocus,
function (newValue) {
$timeout(function() {
newValue && element.focus();
});
},true);
};
});