1
0
mirror of synced 2025-03-10 22:56:12 +03:00

dont bubble up ESC keypress. fixes #118

This commit is contained in:
Igor Vaynberg 2012-06-14 20:36:22 -07:00
parent 1d0e9a4a5b
commit 800b7bbb3f

View File

@ -1006,7 +1006,7 @@
return;
case KEY.ESC:
this.cancel(e);
e.preventDefault();
killEvent(e);
return;
}
}));
@ -1276,7 +1276,7 @@
return;
case KEY.ESC:
this.cancel(e);
e.preventDefault();
killEvent(e);
return;
}
}