Editor scrolling: run one more adjust() 200ms after scroll or resize in case the browser is slow to re-calculate the element heights and pin/unpin the toolbars. See #28328, fixes #29059.
Built from https://develop.svn.wordpress.org/trunk@29352 git-svn-id: http://core.svn.wordpress.org/trunk@29128 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9a9b1791ca
commit
e50ffd401e
|
@ -21,7 +21,8 @@ jQuery( document ).ready( function($) {
|
|||
mceBind = function(){},
|
||||
mceUnbind = function(){},
|
||||
fixedTop = false,
|
||||
fixedBottom = false;
|
||||
fixedBottom = false,
|
||||
scrollTimer;
|
||||
|
||||
$textEditorClone.insertAfter( $textEditor );
|
||||
|
||||
|
@ -345,6 +346,11 @@ jQuery( document ).ready( function($) {
|
|||
}
|
||||
}
|
||||
|
||||
function afterScroll() {
|
||||
clearTimeout( scrollTimer );
|
||||
scrollTimer = setTimeout( adjust, 200 );
|
||||
}
|
||||
|
||||
function on() {
|
||||
// Scroll to the top when triggering this from JS.
|
||||
// Ensures toolbars are pinned properly.
|
||||
|
@ -357,6 +363,7 @@ jQuery( document ).ready( function($) {
|
|||
// Adjust when the window is scrolled or resized.
|
||||
$window.on( 'scroll.editor-expand resize.editor-expand', function( event ) {
|
||||
adjust( event.type );
|
||||
afterScroll();
|
||||
} );
|
||||
|
||||
// Adjust when collapsing the menu, changing the columns, changing the body class.
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue