Skip to content

Instantly share code, notes, and snippets.

@vaporic
Created October 8, 2015 18:06
Show Gist options
  • Save vaporic/165756bfadb53d7053e0 to your computer and use it in GitHub Desktop.
Save vaporic/165756bfadb53d7053e0 to your computer and use it in GitHub Desktop.
Autofocus AngularJ
.directive('autoFocus', function($timeout) {
return {
restrict: 'AC',
link: function(_scope, _element) {
_element[0].focus();
}
};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment