2014-07-10 00:43:14 +02:00
|
|
|
/* global tinymce */
|
2014-07-10 00:06:15 +02:00
|
|
|
|
|
|
|
window.wp = window.wp || {};
|
|
|
|
|
|
|
|
jQuery( document ).ready( function($) {
|
|
|
|
var $window = $( window ),
|
|
|
|
$document = $( document ),
|
|
|
|
$adminBar = $( '#wpadminbar' ),
|
2014-08-01 04:43:17 +02:00
|
|
|
$wrap = $( '#postdivrich' ),
|
2014-07-10 00:06:15 +02:00
|
|
|
$contentWrap = $( '#wp-content-wrap' ),
|
|
|
|
$tools = $( '#wp-content-editor-tools' ),
|
|
|
|
$visualTop,
|
|
|
|
$visualEditor,
|
|
|
|
$textTop = $( '#ed_toolbar' ),
|
|
|
|
$textEditor = $( '#content' ),
|
|
|
|
$textEditorClone = $( '<div id="content-textarea-clone"></div>' ),
|
|
|
|
$bottom = $( '#post-status-info' ),
|
|
|
|
$statusBar,
|
|
|
|
fullscreen = window.wp.editor && window.wp.editor.fullscreen,
|
2014-08-01 04:43:17 +02:00
|
|
|
mceEditor,
|
|
|
|
mceBind = function(){},
|
|
|
|
mceUnbind = function(){},
|
2014-07-10 00:06:15 +02:00
|
|
|
fixedTop = false,
|
|
|
|
fixedBottom = false;
|
|
|
|
|
|
|
|
$textEditorClone.insertAfter( $textEditor );
|
2014-07-10 00:43:14 +02:00
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
$textEditorClone.css( {
|
|
|
|
'font-family': $textEditor.css( 'font-family' ),
|
|
|
|
'font-size': $textEditor.css( 'font-size' ),
|
|
|
|
'line-height': $textEditor.css( 'line-height' ),
|
|
|
|
'padding': $textEditor.css( 'padding' ),
|
|
|
|
'padding-top': 37,
|
|
|
|
'white-space': 'pre-wrap',
|
|
|
|
'word-wrap': 'break-word'
|
|
|
|
} );
|
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
function textEditorKeyup( event ) {
|
2014-07-24 03:33:15 +02:00
|
|
|
var VK = jQuery.ui.keyCode,
|
|
|
|
key = event.keyCode,
|
|
|
|
range = document.createRange(),
|
|
|
|
selStart = $textEditor[0].selectionStart,
|
|
|
|
selEnd = $textEditor[0].selectionEnd,
|
2014-07-10 00:06:15 +02:00
|
|
|
textNode = $textEditorClone[0].firstChild,
|
|
|
|
windowHeight = $window.height(),
|
2014-07-24 03:33:15 +02:00
|
|
|
buffer = 10,
|
2014-07-10 00:06:15 +02:00
|
|
|
offset, cursorTop, cursorBottom, editorTop, editorBottom;
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
if ( selStart && selEnd && selStart !== selEnd ) {
|
2014-07-10 00:06:15 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
// These are not TinyMCE ranges.
|
|
|
|
try {
|
|
|
|
range.setStart( textNode, selStart );
|
|
|
|
range.setEnd( textNode, selEnd + 1 );
|
|
|
|
} catch ( ex ) {}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
|
|
|
offset = range.getBoundingClientRect();
|
|
|
|
|
|
|
|
if ( ! offset.height ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
cursorTop = offset.top - buffer;
|
|
|
|
cursorBottom = cursorTop + offset.height + buffer;
|
|
|
|
editorTop = $adminBar.outerHeight() + $tools.outerHeight() + $textTop.outerHeight();
|
2014-07-10 00:06:15 +02:00
|
|
|
editorBottom = windowHeight - $bottom.outerHeight();
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
if ( cursorTop < editorTop && ( key === VK.UP || key === VK.LEFT || key === VK.BACKSPACE ) ) {
|
|
|
|
window.scrollTo( window.pageXOffset, cursorTop + window.pageYOffset - editorTop );
|
|
|
|
} else if ( cursorBottom > editorBottom ) {
|
|
|
|
window.scrollTo( window.pageXOffset, cursorBottom + window.pageYOffset - editorBottom );
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
2014-08-01 04:43:17 +02:00
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
|
|
|
function textEditorResize() {
|
2014-08-01 04:43:17 +02:00
|
|
|
if ( mceEditor && ! mceEditor.isHidden() ) {
|
2014-07-10 00:06:15 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
var textEditorHeight = $textEditor.height(),
|
|
|
|
hiddenHeight;
|
|
|
|
|
|
|
|
$textEditorClone.width( $textEditor.width() );
|
|
|
|
$textEditorClone.text( $textEditor.val() + ' ' );
|
|
|
|
|
|
|
|
hiddenHeight = $textEditorClone.height();
|
2014-07-10 00:06:15 +02:00
|
|
|
|
|
|
|
if ( hiddenHeight < 300 ) {
|
|
|
|
hiddenHeight = 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( hiddenHeight === textEditorHeight ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$textEditor.height( hiddenHeight );
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
adjust();
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to wait for TinyMCE to initialize.
|
|
|
|
$document.on( 'tinymce-editor-init.editor-expand', function( event, editor ) {
|
|
|
|
// Make sure it's the main editor.
|
|
|
|
if ( editor.id !== 'content' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the editor instance.
|
2014-08-01 04:43:17 +02:00
|
|
|
mceEditor = editor;
|
2014-07-10 00:06:15 +02:00
|
|
|
|
|
|
|
// Set the minimum height to the initial viewport height.
|
|
|
|
editor.settings.autoresize_min_height = 300;
|
|
|
|
|
|
|
|
// Get the necessary UI elements.
|
|
|
|
$visualTop = $contentWrap.find( '.mce-toolbar-grp' );
|
|
|
|
$visualEditor = $contentWrap.find( '.mce-edit-area' );
|
|
|
|
$statusBar = $contentWrap.find( '.mce-statusbar' ).filter( ':visible' );
|
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
function mceGetCursorOffset() {
|
2014-07-26 02:08:19 +02:00
|
|
|
var node = editor.selection.getNode(),
|
|
|
|
view, offset;
|
|
|
|
|
|
|
|
if ( editor.plugins.wpview && ( view = editor.plugins.wpview.getView( node ) ) ) {
|
|
|
|
offset = view.getBoundingClientRect();
|
|
|
|
} else {
|
|
|
|
offset = node.getBoundingClientRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset.height ? offset : false;
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-07-16 06:06:16 +02:00
|
|
|
// Make sure the cursor is always visible.
|
|
|
|
// This is not only necessary to keep the cursor between the toolbars,
|
|
|
|
// but also to scroll the window when the cursor moves out of the viewport to a wpview.
|
|
|
|
// Setting a buffer > 0 will prevent the browser default.
|
|
|
|
// Some browsers will scroll to the middle,
|
|
|
|
// others to the top/bottom of the *window* when moving the cursor out of the viewport.
|
2014-08-01 04:43:17 +02:00
|
|
|
function mceKeyup( event ) {
|
2014-07-16 06:06:16 +02:00
|
|
|
var VK = tinymce.util.VK,
|
|
|
|
key = event.keyCode,
|
2014-08-01 04:43:17 +02:00
|
|
|
offset = mceGetCursorOffset(),
|
2014-07-10 00:06:15 +02:00
|
|
|
windowHeight = $window.height(),
|
2014-07-16 06:06:16 +02:00
|
|
|
buffer = 10,
|
2014-07-10 00:06:15 +02:00
|
|
|
cursorTop, cursorBottom, editorTop, editorBottom;
|
|
|
|
|
|
|
|
if ( ! offset ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-26 02:08:19 +02:00
|
|
|
cursorTop = offset.top + editor.getContentAreaContainer().firstChild.getBoundingClientRect().top;
|
2014-07-10 00:06:15 +02:00
|
|
|
cursorBottom = cursorTop + offset.height;
|
2014-07-16 06:06:16 +02:00
|
|
|
cursorTop = cursorTop - buffer;
|
|
|
|
cursorBottom = cursorBottom + buffer;
|
2014-07-10 00:06:15 +02:00
|
|
|
editorTop = $adminBar.outerHeight() + $tools.outerHeight() + $visualTop.outerHeight();
|
2014-07-16 06:06:16 +02:00
|
|
|
editorBottom = windowHeight - $bottom.outerHeight();
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-07-26 02:08:19 +02:00
|
|
|
// Don't scroll if the node is taller than the visible part of the editor
|
|
|
|
if ( editorBottom - editorTop < offset.height ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-16 06:06:16 +02:00
|
|
|
if ( cursorTop < editorTop && ( key === VK.UP || key === VK.LEFT || key === VK.BACKSPACE ) ) {
|
|
|
|
window.scrollTo( window.pageXOffset, cursorTop + window.pageYOffset - editorTop );
|
|
|
|
} else if ( cursorBottom > editorBottom ) {
|
|
|
|
window.scrollTo( window.pageXOffset, cursorBottom + window.pageYOffset - editorBottom );
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
2014-08-01 04:43:17 +02:00
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-07-26 02:08:19 +02:00
|
|
|
// Adjust when switching editor modes.
|
2014-08-01 04:43:17 +02:00
|
|
|
function mceShow() {
|
2014-07-26 02:08:19 +02:00
|
|
|
setTimeout( function() {
|
|
|
|
editor.execCommand( 'wpAutoResize' );
|
|
|
|
adjust();
|
|
|
|
}, 300 );
|
2014-08-01 04:43:17 +02:00
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
function mceHide() {
|
2014-07-10 00:06:15 +02:00
|
|
|
textEditorResize();
|
2014-07-24 03:33:15 +02:00
|
|
|
adjust();
|
2014-08-01 04:43:17 +02:00
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
mceBind = function() {
|
|
|
|
editor.on( 'keyup', mceKeyup );
|
|
|
|
editor.on( 'show', mceShow );
|
|
|
|
editor.on( 'hide', mceHide );
|
|
|
|
// Adjust when the editor resizes.
|
|
|
|
editor.on( 'setcontent wp-autoresize wp-toolbar-toggle', adjust );
|
|
|
|
};
|
|
|
|
|
|
|
|
mceUnbind = function() {
|
|
|
|
editor.off( 'keyup', mceKeyup );
|
|
|
|
editor.off( 'show', mceShow );
|
|
|
|
editor.off( 'hide', mceHide );
|
|
|
|
editor.off( 'setcontent wp-autoresize wp-toolbar-toggle', adjust );
|
|
|
|
};
|
|
|
|
|
|
|
|
if ( $wrap.hasClass( 'wp-editor-expand' ) ) {
|
|
|
|
// Adjust "immediately"
|
|
|
|
mceBind();
|
|
|
|
initialResize( adjust );
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
} );
|
|
|
|
|
|
|
|
// Adjust the toolbars based on the active editor mode.
|
2014-07-24 03:33:15 +02:00
|
|
|
function adjust( type ) {
|
2014-07-10 00:06:15 +02:00
|
|
|
// Make sure we're not in fullscreen mode.
|
|
|
|
if ( fullscreen && fullscreen.settings.visible ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var bottomHeight = $bottom.outerHeight(),
|
|
|
|
windowPos = $window.scrollTop(),
|
|
|
|
windowHeight = $window.height(),
|
|
|
|
windowWidth = $window.width(),
|
|
|
|
adminBarHeight = windowWidth > 600 ? $adminBar.height() : 0,
|
2014-07-24 03:33:15 +02:00
|
|
|
resize = type !== 'scroll',
|
2014-08-01 04:43:17 +02:00
|
|
|
visual = ( mceEditor && ! mceEditor.isHidden() ),
|
|
|
|
buffer = 200,
|
2014-07-24 03:33:15 +02:00
|
|
|
$top, $editor,
|
2014-07-10 00:06:15 +02:00
|
|
|
toolsHeight, topPos, topHeight, editorPos, editorHeight, editorWidth, statusBarHeight;
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
if ( visual ) {
|
2014-07-10 00:06:15 +02:00
|
|
|
$top = $visualTop;
|
|
|
|
$editor = $visualEditor;
|
|
|
|
} else {
|
|
|
|
$top = $textTop;
|
|
|
|
$editor = $textEditor;
|
|
|
|
}
|
|
|
|
|
|
|
|
toolsHeight = $tools.outerHeight();
|
|
|
|
topPos = $top.parent().offset().top;
|
|
|
|
topHeight = $top.outerHeight();
|
|
|
|
editorPos = $editor.offset().top;
|
|
|
|
editorHeight = $editor.outerHeight();
|
|
|
|
editorWidth = $editor.outerWidth();
|
|
|
|
statusBarHeight = visual ? $statusBar.outerHeight() : 0;
|
|
|
|
|
|
|
|
// Maybe pin the top.
|
2014-07-24 03:33:15 +02:00
|
|
|
if ( ( ! fixedTop || resize ) &&
|
2014-07-10 00:06:15 +02:00
|
|
|
// Handle scrolling down.
|
|
|
|
( windowPos >= ( topPos - toolsHeight - adminBarHeight ) &&
|
|
|
|
// Handle scrolling up.
|
|
|
|
windowPos <= ( topPos - toolsHeight - adminBarHeight + editorHeight - buffer ) ) ) {
|
|
|
|
fixedTop = true;
|
|
|
|
|
|
|
|
$top.css( {
|
|
|
|
position: 'fixed',
|
|
|
|
top: adminBarHeight + toolsHeight,
|
2014-07-10 21:36:15 +02:00
|
|
|
width: $editor.parent().width() - ( $top.outerWidth() - $top.width() ),
|
2014-07-10 00:06:15 +02:00
|
|
|
borderTop: '1px solid #e5e5e5'
|
|
|
|
} );
|
|
|
|
|
|
|
|
$tools.css( {
|
|
|
|
position: 'fixed',
|
|
|
|
top: adminBarHeight,
|
|
|
|
width: editorWidth + 2
|
|
|
|
} );
|
|
|
|
// Maybe unpin the top.
|
2014-07-24 03:33:15 +02:00
|
|
|
} else if ( fixedTop || resize ) {
|
2014-07-10 00:06:15 +02:00
|
|
|
// Handle scrolling up.
|
|
|
|
if ( windowPos <= ( topPos - toolsHeight - adminBarHeight ) ) {
|
|
|
|
fixedTop = false;
|
|
|
|
|
|
|
|
$top.css( {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
borderTop: 'none',
|
|
|
|
width: $editor.parent().width() - ( $top.outerWidth() - $top.width() )
|
|
|
|
} );
|
2014-07-10 00:43:14 +02:00
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
$tools.css( {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
width: $contentWrap.width()
|
|
|
|
} );
|
|
|
|
// Handle scrolling down.
|
|
|
|
} else if ( windowPos >= ( topPos - toolsHeight - adminBarHeight + editorHeight - buffer ) ) {
|
|
|
|
fixedTop = false;
|
|
|
|
|
|
|
|
$top.css( {
|
|
|
|
position: 'absolute',
|
2014-07-10 21:36:15 +02:00
|
|
|
top: editorHeight - buffer
|
2014-07-10 00:06:15 +02:00
|
|
|
} );
|
2014-07-10 00:43:14 +02:00
|
|
|
|
2014-07-10 00:06:15 +02:00
|
|
|
$tools.css( {
|
|
|
|
position: 'absolute',
|
2014-07-10 21:36:15 +02:00
|
|
|
top: editorHeight - buffer + 1, // border
|
2014-07-10 00:06:15 +02:00
|
|
|
width: $contentWrap.width()
|
|
|
|
} );
|
2014-07-10 00:43:14 +02:00
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Maybe adjust the bottom bar.
|
2014-07-24 03:33:15 +02:00
|
|
|
if ( ( ! fixedBottom || resize ) &&
|
2014-07-10 00:06:15 +02:00
|
|
|
// + 1 for the border around the .wp-editor-container.
|
|
|
|
( windowPos + windowHeight ) <= ( editorPos + editorHeight + bottomHeight + statusBarHeight + 1 ) ) {
|
|
|
|
fixedBottom = true;
|
|
|
|
|
|
|
|
$bottom.css( {
|
|
|
|
position: 'fixed',
|
|
|
|
bottom: 0,
|
|
|
|
width: editorWidth + 2,
|
|
|
|
borderTop: '1px solid #dedede'
|
|
|
|
} );
|
2014-07-24 03:33:15 +02:00
|
|
|
} else if ( ( fixedBottom || resize ) &&
|
2014-07-10 00:06:15 +02:00
|
|
|
( windowPos + windowHeight ) > ( editorPos + editorHeight + bottomHeight + statusBarHeight - 1 ) ) {
|
|
|
|
fixedBottom = false;
|
|
|
|
|
|
|
|
$bottom.css( {
|
|
|
|
position: 'relative',
|
|
|
|
bottom: 'auto',
|
|
|
|
width: '100%',
|
|
|
|
borderTop: 'none'
|
|
|
|
} );
|
|
|
|
}
|
2014-07-24 03:33:15 +02:00
|
|
|
|
|
|
|
if ( resize ) {
|
|
|
|
$contentWrap.css( {
|
|
|
|
paddingTop: $tools.outerHeight()
|
|
|
|
} );
|
|
|
|
|
|
|
|
if ( visual ) {
|
|
|
|
$visualEditor.css( {
|
|
|
|
paddingTop: $visualTop.outerHeight()
|
|
|
|
} );
|
|
|
|
} else {
|
|
|
|
$textEditor.css( {
|
|
|
|
marginTop: $textTop.outerHeight()
|
|
|
|
} );
|
|
|
|
$textEditorClone.width( $textEditor.width() );
|
|
|
|
}
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
}
|
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
function fullscreenHide() {
|
|
|
|
textEditorResize();
|
|
|
|
adjust();
|
|
|
|
}
|
|
|
|
|
2014-07-24 03:33:15 +02:00
|
|
|
function initialResize( callback ) {
|
|
|
|
for ( var i = 1; i < 6; i++ ) {
|
|
|
|
setTimeout( callback, 500 * i );
|
|
|
|
}
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
function on() {
|
|
|
|
// Scroll to the top when triggering this from JS.
|
|
|
|
// Ensures toolbars are pinned properly.
|
|
|
|
if ( window.pageYOffset && window.pageYOffset > 130 ) {
|
|
|
|
window.scrollTo( window.pageXOffset, 0 );
|
|
|
|
}
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
$wrap.addClass( 'wp-editor-expand' );
|
2014-07-10 00:06:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
// Adjust when the window is scrolled or resized.
|
|
|
|
$window.on( 'scroll.editor-expand resize.editor-expand', function( event ) {
|
|
|
|
adjust( event.type );
|
|
|
|
} );
|
2014-07-24 03:33:15 +02:00
|
|
|
|
2014-08-01 04:43:17 +02:00
|
|
|
// Adjust when collapsing the menu, changing the columns, changing the body class.
|
|
|
|
$document.on( 'wp-collapse-menu.editor-expand postboxes-columnchange.editor-expand editor-classchange.editor-expand', adjust );
|
|
|
|
|
|
|
|
$textEditor.on( 'focus.editor-expand input.editor-expand propertychange.editor-expand', textEditorResize );
|
|
|
|
$textEditor.on( 'keyup.editor-expand', textEditorKeyup );
|
|
|
|
mceBind();
|
|
|
|
|
|
|
|
// Adjust when entering/exiting fullscreen mode.
|
|
|
|
fullscreen && fullscreen.pubsub.subscribe( 'hidden', fullscreenHide );
|
|
|
|
|
|
|
|
if ( mceEditor ) {
|
|
|
|
mceEditor.settings.wp_autoresize_on = true;
|
|
|
|
mceEditor.execCommand( 'wpAutoResizeOn' );
|
|
|
|
|
|
|
|
if ( ! mceEditor.isHidden() ) {
|
|
|
|
mceEditor.execCommand( 'wpAutoResize' );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! mceEditor || mceEditor.isHidden() ) {
|
2014-07-24 03:33:15 +02:00
|
|
|
textEditorResize();
|
2014-08-01 04:43:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
adjust();
|
|
|
|
}
|
|
|
|
|
|
|
|
function off() {
|
|
|
|
var height = window.getUserSetting('ed_size');
|
|
|
|
|
|
|
|
// Scroll to the top when triggering this from JS.
|
|
|
|
// Ensures toolbars are reset properly.
|
|
|
|
if ( window.pageYOffset && window.pageYOffset > 130 ) {
|
|
|
|
window.scrollTo( window.pageXOffset, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
$wrap.removeClass( 'wp-editor-expand' );
|
|
|
|
|
|
|
|
// Adjust when the window is scrolled or resized.
|
|
|
|
$window.off( 'scroll.editor-expand resize.editor-expand' );
|
|
|
|
|
|
|
|
// Adjust when collapsing the menu, changing the columns, changing the body class.
|
|
|
|
$document.off( 'wp-collapse-menu.editor-expand postboxes-columnchange.editor-expand editor-classchange.editor-expand', adjust );
|
|
|
|
|
|
|
|
$textEditor.off( 'focus.editor-expand input.editor-expand propertychange.editor-expand', textEditorResize );
|
|
|
|
$textEditor.off( 'keyup.editor-expand', textEditorKeyup );
|
|
|
|
mceUnbind();
|
|
|
|
|
|
|
|
// Adjust when entering/exiting fullscreen mode.
|
|
|
|
fullscreen && fullscreen.pubsub.unsubscribe( 'hidden', fullscreenHide );
|
|
|
|
|
|
|
|
// Reset all css
|
|
|
|
$.each( [ $visualTop, $textTop, $tools, $bottom, $contentWrap, $visualEditor, $textEditor ], function( i, element ) {
|
|
|
|
element && element.attr( 'style', '' );
|
|
|
|
});
|
|
|
|
|
|
|
|
if ( mceEditor ) {
|
|
|
|
mceEditor.settings.wp_autoresize_on = false;
|
|
|
|
mceEditor.execCommand( 'wpAutoResizeOff' );
|
|
|
|
|
|
|
|
if ( ! mceEditor.isHidden() ) {
|
|
|
|
$textEditor.hide();
|
|
|
|
|
|
|
|
if ( height ) {
|
|
|
|
mceEditor.theme.resizeTo( null, height );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( height ) {
|
|
|
|
$textEditor.height( height );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start on load
|
|
|
|
if ( $wrap.hasClass( 'wp-editor-expand' ) ) {
|
|
|
|
on();
|
|
|
|
|
|
|
|
// Ideally we need to resize just after CSS has fully loaded and QuickTags is ready.
|
|
|
|
if ( $contentWrap.hasClass( 'html-active' ) ) {
|
|
|
|
initialResize( function() {
|
|
|
|
adjust();
|
|
|
|
textEditorResize();
|
|
|
|
} );
|
|
|
|
}
|
2014-07-24 03:33:15 +02:00
|
|
|
}
|
2014-08-01 04:43:17 +02:00
|
|
|
|
|
|
|
// Show the on/off checkbox
|
|
|
|
$( '#adv-settings .editor-expand' ).show();
|
|
|
|
$( '#editor-expand-toggle' ).on( 'change.editor-expand', function() {
|
|
|
|
if ( $(this).prop( 'checked' ) ) {
|
|
|
|
on();
|
|
|
|
window.setUserSetting( 'editor_expand', 'on' );
|
|
|
|
} else {
|
|
|
|
off();
|
|
|
|
window.setUserSetting( 'editor_expand', 'off' );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Expose on() and off()
|
|
|
|
window.editorExpand = {
|
|
|
|
on: on,
|
|
|
|
off: off
|
|
|
|
};
|
2014-07-10 00:06:15 +02:00
|
|
|
});
|