Changes between Initial Version and Version 1 of Ticket #23042
- Timestamp:
- 12/21/12 20:28:33 (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23042 – Description
initial v1 1 Follow-up testing to Ticket #22708 and patches http://core.trac.wordpress.org/changeset/230162 http://core.trac.wordpress.org/changeset/23017 1 Follow-up testing to Ticket #22708 and patches [23016] 2 [23017] 3 3 4 4 I installed the new versions of: … … 11 11 12 12 As a temporary workaround, I modified line 704 in post.js to 500 pixels: 13 {{{ 13 14 if ( height > 50 && height < 500 && height != getUserSetting( 'ed_size' ) ) 14 15 setUserSetting( 'ed_size', height ); 15 16 } 16 17 }}} 17 18 and lines 74 & 75 in class-wp-editor.php to 500 pixels: 19 {{{ 18 20 if ( $set['editor_height'] < 50 ) 19 21 $set['editor_height'] = 50; 20 22 elseif ( $set['editor_height'] > 500 ) 21 23 $set['editor_height'] = 500; 22 24 }}} 23 25 which is a comfortable post editor size (my personal preference) that is "sticky". 24 26
