Ticket #6130: mce-3.04.diff
| File mce-3.04.diff, 2.0 KB (added by , 18 years ago) |
|---|
-
wp-admin/css/ie.css
14 14 } 15 15 16 16 * html #wpbody { 17 _width: expression(document.documentElement.clientWidth > 9 62 ? "980px" : "99.9%");17 _width: expression(document.documentElement.clientWidth > 982 ? "980px" : "99.9%"); 18 18 } 19 19 20 20 * html #poststuff .postarea, * html #poststuff #titlediv { -
wp-admin/js/editor.js
13 13 switchEditors = { 14 14 15 15 saveCallback : function(el, content, body) { 16 16 17 document.getElementById(el).style.color = '#fff'; 17 return this.pre_wpautop(content); 18 if ( tinyMCE.activeEditor.isHidden() ) 19 content = document.getElementById(el).value; 20 else 21 content = this.pre_wpautop(content); 22 23 return content; 18 24 }, 19 25 20 26 pre_wpautop : function(content) { -
wp-includes/script-loader.php
33 33 $visual_editor = apply_filters('visual_editor', array('tiny_mce')); 34 34 $this->add( 'editor', false, $visual_editor, '20080218' ); 35 35 36 $this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080 221' );36 $this->add( 'editor_functions', '/wp-admin/js/editor.js', false, '20080307' ); 37 37 38 38 // Modify this version when tinyMCE plugins are changed. 39 $mce_version = apply_filters('tiny_mce_version', '2008030 6');39 $mce_version = apply_filters('tiny_mce_version', '20080307'); 40 40 $this->add( 'tiny_mce', '/wp-includes/js/tinymce/tiny_mce_config.php', array('editor_functions'), $mce_version ); 41 41 42 42 $this->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.6');