Update jquery.ime from upstream

Fixes bug 53041 (upstream patch by Matmarex)

Bug: 53041
Change-Id: I8653404833d83a6d798551a47e37d87e6c0c1eaf
This commit is contained in:
Amir E. Aharoni
2013-08-19 19:32:58 +03:00
committed by Nikerabbit
parent 6cf1486399
commit 2dd6cf74b8

View File

@@ -856,7 +856,9 @@
} );
// Hide the menu when clicked outside
$( 'html' ).click( $.proxy( this.hide, this ) );
$( 'html' ).click( function () {
imeselector.hide();
} );
// ... but when clicked on window do not propagate it.
this.$menu.on( 'click', function ( event ) {