1
0
mirror of synced 2024-11-22 13:06:08 +03:00

Merge pull request #2483 from hitosu/master

filter 229 keyCodes (input method editor is processing key input)
This commit is contained in:
Kevin Brown 2014-06-26 20:18:09 -04:00
commit 79b5bf6db9

View File

@ -2117,6 +2117,9 @@ the specific language governing permissions and limitations under the Apache Lic
this.search.on("keydown", this.bind(function (e) {
if (!this.isInterfaceEnabled()) return;
// filter 229 keyCodes (input method editor is processing key input)
if (229 == e.keyCode) return;
if (e.which === KEY.PAGE_UP || e.which === KEY.PAGE_DOWN) {
// prevent the page from scrolling
killEvent(e);