Skip to content

Instantly share code, notes, and snippets.

@oliverm2112
Created April 16, 2013 13:34
Show Gist options
  • Save oliverm2112/5395931 to your computer and use it in GitHub Desktop.
Save oliverm2112/5395931 to your computer and use it in GitHub Desktop.
DirectiveGist
app.directive('focus', function () {
return {
restrict: 'A',
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