Skip to content

Instantly share code, notes, and snippets.

@tmoitie
Created May 8, 2014 10:48
Show Gist options
  • Save tmoitie/0c351161ef34a6b7380d to your computer and use it in GitHub Desktop.
Save tmoitie/0c351161ef34a6b7380d to your computer and use it in GitHub Desktop.
angular.module('app').directive('closeEsc', ['$window', function($window){
return {
restrict: 'A',
link: function (scope, element, attrs) {
angular.element($window).bind('keyup', function(event){
if (event.keyCode === 27) {
scope[attrs.closeEsc] = false;
scope.$apply();
}
});
}
};
}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment