mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
30 lines
635 B
TypeScript
30 lines
635 B
TypeScript
import coreModule from '../core_module';
|
|
|
|
coreModule.directive('giveFocus', function() {
|
|
return function(scope, element, attrs) {
|
|
element.click(function(e) {
|
|
e.stopPropagation();
|
|
});
|
|
|
|
scope.$watch(
|
|
attrs.giveFocus,
|
|
function(newValue) {
|
|
if (!newValue) {
|
|
return;
|
|
}
|
|
setTimeout(function() {
|
|
element.focus();
|
|
var domEl = element[0];
|
|
if (domEl.setSelectionRange) {
|
|
var pos = element.val().length * 2;
|
|
domEl.setSelectionRange(pos, pos);
|
|
}
|
|
}, 200);
|
|
},
|
|
true
|
|
);
|
|
};
|
|
});
|
|
|
|
export default {};
|