Files
ferglie/static/js/app/directives/enter.js
Fergal Moran 0c4e910b9e MVP Done
2017-05-09 23:31:55 +01:00

13 lines
444 B
JavaScript
Executable File

angular.module('shortioApp')
.directive('ngEnter', function () {
return function (scope, element, attrs) {
element.bind("keydown keypress", function (event) {
if (event.which === 13) {
scope.$apply(function () {
scope.$eval(attrs.ngEnter);
});
event.preventDefault();
}
});
};
});