Skip to content

Instantly share code, notes, and snippets.

@matthewbednarski
Last active September 30, 2015 14:55
Show Gist options
  • Save matthewbednarski/394a04cc7ea8f9a1a1eb to your computer and use it in GitHub Desktop.
Save matthewbednarski/394a04cc7ea8f9a1a1eb to your computer and use it in GitHub Desktop.
a directive to give focus to an element, adds tabindex if the element doesn't already have it
(function() {
var app = angular.module('mcbFocus', [])
.directive('focusOn', function() {
return function(scope, elem, attr) {
if(attr.tabIndex === undefined){
elem.attr('tabindex', -1);
}
scope.$on('focusOn', function(e, name) {
if (name === attr.focusOn) {
elem[0].focus();
}
});
};
})
.factory('focus', function($rootScope, $timeout) {
return function(name) {
$timeout(function() {
$rootScope.$broadcast('focusOn', name);
});
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment