diff --git a/lib/jquery.ime/jquery.ime.js b/lib/jquery.ime/jquery.ime.js index 54e0bc09..3a8f59bb 100644 --- a/lib/jquery.ime/jquery.ime.js +++ b/lib/jquery.ime/jquery.ime.js @@ -1,4 +1,4 @@ -/*! jquery.ime - v0.1.0+20160412 +/*! jquery.ime - v0.1.0+20160518 * https://github.com/wikimedia/jquery.ime * Copyright (c) 2016 Santhosh Thottingal; Licensed GPL, MIT */ ( function ( $ ) { @@ -1538,8 +1538,7 @@ */ function isShortcutKey( event ) { // 77 - The letter M, for Ctrl-M - // 13 - The Enter key - return event.ctrlKey && !event.altKey && ( event.which === 77 || event.which === 13 ); + return event.ctrlKey && !event.altKey && ( event.which === 77 ); } function isDOMAttrModifiedSupported() {