mirror of https://gitee.com/bigwinds/arangodb
17 lines
355 B
JavaScript
17 lines
355 B
JavaScript
'use strict';
|
|
|
|
angular.module('etcdControlPanel')
|
|
.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();
|
|
}
|
|
});
|
|
};
|
|
});
|