Last active
September 30, 2015 14:55
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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