diff --git a/src/js/_enqueues/lib/quicktags.js b/src/js/_enqueues/lib/quicktags.js index 0e69fa6843..4b1a80fa28 100644 --- a/src/js/_enqueues/lib/quicktags.js +++ b/src/js/_enqueues/lib/quicktags.js @@ -435,7 +435,7 @@ window.edToolbar = function(){}; ariaLabel = this.attr && this.attr.ariaLabel ? ' aria-label="' + _escape( this.attr.ariaLabel ) + '"' : '', val = this.display ? ' value="' + _escape( this.display ) + '"' : '', id = this.id ? ' id="' + _escape( idPrefix + this.id ) + '"' : '', - dfw = ( wp = window.wp ) && wp.oldEditor && wp.oldEditor.dfw; + dfw = ( wp = window.wp ) && wp.editor && wp.editor.dfw; if ( this.id === 'fullscreen' ) { return ''; @@ -681,11 +681,11 @@ window.edToolbar = function(){}; qt.DFWButton.prototype.callback = function() { var wp; - if ( ! ( wp = window.wp ) || ! wp.oldEditor || ! wp.oldEditor.dfw ) { + if ( ! ( wp = window.wp ) || ! wp.editor || ! wp.editor.dfw ) { return; } - window.wp.oldEditor.dfw.toggle(); + window.wp.editor.dfw.toggle(); }; qt.TextDirectionButton = function() { diff --git a/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js b/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js index 9fcf03b780..3f95448266 100644 --- a/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js +++ b/src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js @@ -12,7 +12,7 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) { __ = editor.editorManager.i18n.translate, $ = window.jQuery, wp = window.wp, - hasWpautop = ( wp && wp.oldEditor && wp.oldEditor.autop && editor.getParam( 'wpautop', true ) ), + hasWpautop = ( wp && wp.editor && wp.editor.autop && editor.getParam( 'wpautop', true ) ), wpTooltips = false; if ( $ ) { @@ -130,7 +130,7 @@ tinymce.PluginManager.add( 'wordpress', function( editor ) { if ( event.load && event.format !== 'raw' ) { if ( hasWpautop ) { - event.content = wp.oldEditor.autop( event.content ); + event.content = wp.editor.autop( event.content ); } else { // Prevent creation of paragraphs out of multiple HTML comments. event.content = event.content.replace( /-->\s+\s*\n\n