mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
12 lines
331 B
JavaScript
12 lines
331 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()
|
|
}
|
|
})
|
|
}
|
|
} |