Improve folders rename

This commit is contained in:
Francis Lachapelle
2015-09-16 16:15:04 -04:00
parent 7b580f8af6
commit 70bb512bb8
6 changed files with 23 additions and 18 deletions
@@ -17,9 +17,7 @@
return function(scope, element, attrs) {
element.bind("keydown keypress", function(event) {
if (event.which === ENTER_KEY) {
scope.$apply(function() {
scope.$eval(attrs.sgEnter);
});
scope.$apply(attrs.sgEnter);
event.preventDefault();
}
});