diff options
Diffstat (limited to 'plugins/jetpack/modules/after-the-deadline')
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/jetpack/modules/after-the-deadline/jquery.atd.js b/plugins/jetpack/modules/after-the-deadline/jquery.atd.js index 703edad9..1ffd8a01 100644 --- a/plugins/jetpack/modules/after-the-deadline/jquery.atd.js +++ b/plugins/jetpack/modules/after-the-deadline/jquery.atd.js @@ -15,7 +15,7 @@ */ /* jshint onevar: false, sub: true, smarttabs: true, loopfunc: true */ -/* global AtDCore, AtD_proofread_click_count, CSSHttpRequest, ActiveXObject */ +/* global AtDCore, AtD_proofread_click_count:true, CSSHttpRequest, ActiveXObject */ var AtD = { diff --git a/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js b/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js index 34cb2e36..198c9a5d 100644 --- a/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js +++ b/plugins/jetpack/modules/after-the-deadline/tinymce/editor_plugin.js @@ -16,7 +16,7 @@ */ /* jshint onevar: false, sub: true, devel: true, loopfunc: true */ -/* global tinymce, AtDCore, AtD_proofread_click_count */ +/* global tinymce, AtDCore, AtD_proofread_click_count:true */ (function() { diff --git a/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js b/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js index 1a71ce8b..27cf86f8 100644 --- a/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js +++ b/plugins/jetpack/modules/after-the-deadline/tinymce/plugin.js @@ -85,7 +85,7 @@ tinymce.PluginManager.add( 'AtD', function( editor ) { function checkIfFinished() { if ( ! editor.dom.select('span.hiddenSpellError, span.hiddenGrammarError, span.hiddenSuggestion').length ) { if ( suggestionsMenu ) { - suggestionsMenu.hideMenu(); + suggestionsMenu.hide(); } finish(); |