浏览代码
dont bubble up ESC keypress. fixes #118
Igor Vaynberg
13 年之前
|
@@ -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;
|
|
|
}
|
|
|
}
|