Changeset 6544 for trunk/wp-includes/general-template.php
- Timestamp:
- 01/03/2008 08:03:29 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r6538 r6544 923 923 #postdivrich table, #postdivrich #quicktags {border-top: none;} 924 924 #quicktags {border-bottom: none; padding-bottom: 2px; margin-bottom: -1px;} 925 #edButtons {border-bottom: 1px solid #ccc;}926 925 </style> 927 <div id='ed Buttons' style='display:none;'>926 <div id='editor-toolbar' style='display:none;'> 928 927 <div class='zerosize'><input accesskey='e' type='button' onclick='switchEditors("<?php echo $id; ?>")' /></div> 929 <input id='edButtonPreview' class='edButtonFore' type='button' value='<?php _e('Visual'); ?>' /> 930 <input id='edButtonHTML' class='edButtonBack' type='button' value='<?php _e('Code'); ?>' onclick='switchEditors("<?php echo $id; ?>")' /> 928 <a id='edButtonHTML' class='' onclick='switchEditors("<?php echo $id; ?>")'><?php _e('HTML'); ?></a> 929 <a id='edButtonPreview' class='active'><?php _e('Visual'); ?></a> 930 <div id="media-buttons"> 931 <?php _e('Add media:'); ?> 932 <?php do_action( 'media_buttons'); ?> 933 </div> 931 934 </div> 932 935 <script type="text/javascript"> 933 936 // <![CDATA[ 934 937 if ( typeof tinyMCE != "undefined" && tinyMCE.configs.length > 0 ) 935 document.getElementById('ed Buttons').style.display = 'block';938 document.getElementById('editor-toolbar').style.display = 'block'; 936 939 // ]]> 937 940 </script>
Note: See TracChangeset
for help on using the changeset viewer.