Changeset 2763 for trunk/wp-admin/admin-header.php
- Timestamp:
- 08/08/2005 03:28:37 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-header.php
r2762 r2763 9 9 <link rel="stylesheet" href="<?php echo get_settings('siteurl') ?>/wp-admin/wp-admin.css?version=<?php bloginfo('version'); ?>" type="text/css" /> 10 10 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_settings('blog_charset'); ?>" /> 11 12 <?php if ( get_option('rich_editing') ) :?>13 <script type="text/javascript" src="tinymce/tiny_mce_src.js"></script>14 <script type="text/javascript">15 tinyMCE.init({16 mode : "specific_textareas",17 textarea_trigger : "title",18 theme : "advanced",19 theme_advanced_buttons1 : "bold,italic,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,image,emotions,separator,undo,redo,code",20 theme_advanced_buttons2 : "",21 theme_advanced_buttons3 : "",22 theme_advanced_toolbar_location : "top",23 theme_advanced_toolbar_align : "left",24 theme_advanced_path_location : "bottom",25 entity_encoding : "raw",26 extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]",27 plugins : "emotions"28 <?php do_action('mce_options'); ?>29 });30 </script>31 <?php endif; ?>32 11 33 12 <script type="text/javascript"> … … 94 73 95 74 addLoadEvent(blurry); 96 97 75 <?php endif; ?> 98 99 100 76 //]]> 101 77 </script> 102 78 <script type="text/javascript" src="fat.js"></script> 79 <?php if ( get_option('rich_editing') ) :?> 80 <script type="text/javascript" src="tinymce/tiny_mce_src.js"></script> 81 <script type="text/javascript"> 82 tinyMCE.init({ 83 mode : "specific_textareas", 84 textarea_trigger : "title", 85 width : "100%", 86 theme : "advanced", 87 theme_advanced_buttons1 : "bold,italic,strikethrough,separator,bullist,numlist,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,image,emotions,separator,undo,redo,code", 88 theme_advanced_buttons2 : "", 89 theme_advanced_buttons3 : "", 90 theme_advanced_toolbar_location : "top", 91 theme_advanced_toolbar_align : "left", 92 theme_advanced_path_location : "bottom", 93 entity_encoding : "raw", 94 extended_valid_elements : "a[id|href|title|onclick],img[class|src|alt|title|width|height|align]", 95 plugins : "emotions" 96 <?php do_action('mce_options'); ?> 97 }); 98 </script> 99 <?php endif; ?> 103 100 <?php if ( isset( $editing ) ) : ?> 104 101 <script type="text/javascript" src="dbx.js"></script>
Note: See TracChangeset
for help on using the changeset viewer.