项目文件夹

文件
2026-07-13 12:08:39 +08:00

16 行
311 B
JavaScript

angular.module('portainer.app').directive('autoFocus', [
'$timeout',
function porAutoFocus($timeout) {
var directive = {
restrict: 'A',
link: function (scope, element) {
$timeout(function () {
element[0].focus();
});
},
};
return directive;
},
]);