import {module} from '../module'; /** * Sets the focus and selects the text on the directive element. */ export function directive() { return { restrict: 'A', link: function($scope, $element, $attrs) { var input = $element[0]; input.focus(); input.select(); } }; } module.directive('vnFocus', directive);