Use document.body instead of 'body' as jQuery selector

Change-Id: Ia551b3050ed546de1f9db44dbd332a5b6c108a9f
This commit is contained in:
Fomafix
2019-12-16 11:05:57 +01:00
committed by jenkins-bot
parent 6d97927ad2
commit 61ebecff91
10 changed files with 18 additions and 18 deletions

View File

@@ -80,11 +80,11 @@
*/
render: function () {
var $enabledOnly,
webfonts = $( 'body' ).data( 'webfonts' );
webfonts = $( document.body ).data( 'webfonts' );
this.dirty = false;
this.$parent.$settingsPanel.empty();
this.$imes = $( 'body' ).data( 'ime' );
this.$imes = $( document.body ).data( 'ime' );
this.$parent.$settingsPanel.append( this.$template );
$enabledOnly = this.$template.find( '.enabled-only' );
if ( $.ime.preferences.isEnabled() ) {