Use document.body instead of 'body' as jQuery selector
Change-Id: Ia551b3050ed546de1f9db44dbd332a5b6c108a9f
This commit is contained in:
@@ -343,7 +343,7 @@
|
||||
* Destroy the binding of ime to the editable element
|
||||
*/
|
||||
destroy: function () {
|
||||
$( 'body' ).off( '.ime' );
|
||||
$( document.body ).off( '.ime' );
|
||||
this.$element.off( '.ime' ).removeData( 'ime' ).removeData( 'imeselector' );
|
||||
},
|
||||
|
||||
@@ -972,7 +972,7 @@
|
||||
}
|
||||
|
||||
this.$imeSetting.append( this.$menu );
|
||||
$( 'body' ).append( this.$imeSetting );
|
||||
$( document.body ).append( this.$imeSetting );
|
||||
},
|
||||
|
||||
stopTimer: function () {
|
||||
|
||||
Reference in New Issue
Block a user