Changeset 29524
- Timestamp:
- 08/18/2014 01:12:31 AM (12 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
-
css/edit.css (modified) (1 diff)
-
js/editor-expand.js (modified) (2 diffs)
-
js/postbox.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/edit.css
r29495 r29524 386 386 visibility: hidden; 387 387 overflow: hidden; 388 max-width: 100%; 388 389 } 389 390 -
trunk/src/wp-admin/js/editor-expand.js
r29523 r29524 92 92 hiddenHeight; 93 93 94 $textEditorClone.width( $textEditor.width() );94 $textEditorClone.width( $textEditor.width() - 22 ); 95 95 $textEditorClone.text( $textEditor.val() + ' ' ); 96 96 … … 462 462 marginTop: $textTop.outerHeight() 463 463 } ); 464 } 465 // ALways resize the clone so it doesn't "push" the parent width over 100%466 $textEditorClone.width( contentWrapWidth - 20 - ( borderWidth * 2 ) );464 465 $textEditorClone.width( contentWrapWidth - 20 - ( borderWidth * 2 ) ); 466 } 467 467 } 468 468 } -
trunk/src/wp-admin/js/postbox.js
r29523 r29524 50 50 $postbox.show(); 51 51 if ( $.isFunction( postboxes.pbshow ) ) 52 self.pbshow( box );52 self.pbshow( boxId ); 53 53 } else { 54 54 $postbox.hide(); 55 55 if ( $.isFunction( postboxes.pbhide ) ) 56 self.pbhide( box );56 self.pbhide( boxId ); 57 57 } 58 58 self.save_state(page);
Note: See TracChangeset
for help on using the changeset viewer.