Fix keybinding in upload modal

pull/1/head
yflory 2020-11-25 16:36:48 +01:00
parent 3de5ca75a6
commit ff0a570034
1 changed files with 2 additions and 1 deletions

View File

@ -65,12 +65,13 @@ define([
switch (e.which) {
case 27: // cancel
if (typeof(no) === 'function') { no(e); }
$(el || window).off('keydown', handler);
break;
case 13: // enter
if (typeof(yes) === 'function') { yes(e); }
$(el || window).off('keydown', handler);
break;
}
$(el || window).off('keydown', handler);
};
$(el || window).keydown(handler);