Changeset 17837 for trunk/wp-admin/includes/post.php
- Timestamp:
- 05/08/2011 02:01:53 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/post.php
r17786 r17837 1730 1730 $width = isset($content_width) && 800 > $content_width ? $content_width : 800; 1731 1731 $width = $width + 10; // compensate for the padding 1732 $dfw_width = get_user_setting( 'dfw_width', $width ); 1732 1733 $save = $post->post_status == 'publish' ? __('Update') : __('Save'); 1733 1734 ?> 1734 1735 <div id="wp-fullscreen-body"> 1735 <div id="fullscreen-topbar" class="fade-600"> 1736 <div id="wp-fullscreen-info"> 1737 <span id="wp-fullscreen-saved"> </span> 1738 <span class="autosave-message"> </span> 1739 <span id="wp-fullscreen-last-edit"> </span> 1740 </div> 1741 1736 <div id="fullscreen-topbar"> 1742 1737 <div id="wp-fullscreen-toolbar"> 1743 1738 1744 <div id="wp-fullscreen-close"><a href="#" onclick="fullscreen.off();return false;"><?php _e(' Back'); ?></a></div>1739 <div id="wp-fullscreen-close"><a href="#" onclick="fullscreen.off();return false;"><?php _e('Close'); ?></a></div> 1745 1740 <div id="wp-fullscreen-save"> 1746 1741 <span><?php if ( $post->post_status == 'publish' ) _e('Updated.'); else _e('Saved.'); ?></span> … … 1818 1813 </div></div> 1819 1814 1820 <div id="wp-fullscreen-count"><?php _e('Word Count:'); ?> <span class="word-count">0</span></div> 1815 <div id="wp-fullscreen-count"> 1816 <span title="<?php _e('Wider'); ?>" id="wp-fullscreen-plus">+</span> 1817 <span title="<?php _e('Narrower'); ?>" id="wp-fullscreen-minus">–</span> 1818 <span title="<?php _e('Reset width'); ?>" id="wp-fullscreen-reset">×</span> 1819 <?php _e('Word Count:'); ?> <span class="word-count">0</span> 1821 1820 </div> 1822 1821 </div> 1823 1822 </div> 1824 1823 </div> 1825 1824 1826 <div id="wp-fullscreen-wrap" style="width:<?php echo $ width; ?>px;">1825 <div id="wp-fullscreen-wrap" style="width:<?php echo $dfw_width; ?>px;"> 1827 1826 <label id="wp-fullscreen-title-prompt-text" for="wp-fullscreen-title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label> 1828 1827 <input type="text" id="wp-fullscreen-title" value="" autocomplete="off" />
Note: See TracChangeset
for help on using the changeset viewer.