Skip to content

Instantly share code, notes, and snippets.

@neilbo
Created September 3, 2014 11:00
Show Gist options
  • Save neilbo/763a1f2381b2bd731160 to your computer and use it in GitHub Desktop.
Save neilbo/763a1f2381b2bd731160 to your computer and use it in GitHub Desktop.
disable space bar angular directive
app.directive('ngSpace', function() {
return function(scope, element, attrs) {
element.bind("keydown keypress", function(event) {
if(event.which === 32) {
scope.$apply(function(){
scope.$eval(attrs.ngSpace);
});
event.preventDefault();
}
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment