Files
stf-DeviceFarmer/res/app/components/stf/common-ui/ng-enter/ng-enter-directive.js
2016-01-19 23:08:33 +09:00

13 lines
327 B
JavaScript

module.exports = function ngEnterDirective() {
return function(scope, element, attrs) {
element.bind('keydown keypress', function(event) {
if (event.which === 13) {
scope.$apply(function() {
scope.$eval(attrs.ngEnter, {event: event})
})
event.preventDefault()
}
})
}
}