From 9dc42d7d31ff99b0f72fe517f8841b13a80568e7 Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Wed, 18 May 2016 11:02:00 +0530 Subject: [PATCH] Update jquery.ime to d563f903c9e * Remove the undocumented Control+Enter shortcult for toggle Bug: T106700 Bug: T134664 Change-Id: I1d62d751515016b3d028ecf6ae78a65eb1728391 --- lib/jquery.ime/jquery.ime.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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() {