Ticket #31599: 31599.patch
File 31599.patch, 1.1 KB (added by , 8 years ago) |
---|
-
src/wp-admin/js/editor-expand.js
385 385 width: contentWrapWidth - ( borderWidth * 2 ) - ( visual ? 0 : ( $top.outerWidth() - $top.width() ) ) 386 386 } ); 387 387 388 $statusBar.attr( 'style', advanced ? '' : ' visibility: hidden;' );388 $statusBar.attr( 'style', advanced ? '' : 'display: none;' ); 389 389 $bottom.attr( 'style', '' ); 390 390 } 391 391 } else { … … 480 480 $statusBar.css( { 481 481 position: 'fixed', 482 482 bottom: heights.bottomHeight, 483 visibility: '',483 display: '', 484 484 width: contentWrapWidth - ( borderWidth * 2 ) 485 485 } ); 486 486 … … 495 495 ( windowPos + heights.windowHeight ) > ( editorPos + editorHeight + heights.bottomHeight + heights.statusBarHeight - borderWidth ) ) ) { 496 496 fixedBottom = false; 497 497 498 $statusBar.attr( 'style', advanced ? '' : ' visibility: hidden;' );498 $statusBar.attr( 'style', advanced ? '' : 'display: none;' ); 499 499 $bottom.attr( 'style', '' ); 500 500 } 501 501 }