6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
app.directive('autofocusOnInsert', function () {
|
|
'use strict';
|
|
return function (scope, elm) {
|
|
elm.focus();
|
|
};
|
|
}); |