Changeset 4101
- Timestamp:
- 08/16/2006 02:50:03 AM (19 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/autosave.js.php
r4098 r4101 84 84 autosaveAjax.setVar("content", form.content.value); 85 85 } else { 86 if(tinyMCE.selectedInstance.spellcheckerOn) return; 86 87 tinyMCE.wpTriggerSave(); 87 88 autosaveAjax.setVar("content", form.content.value); -
trunk/wp-includes/js/tinymce/plugins/wordpress/editor_plugin.js
r4085 r4101 425 425 426 426 tinyMCE._customCleanup(this, "submit_content_dom", this.contentWindow.document.body); 427 var htm = skip_cleanup ? this.getBody().innerHTML : tinyMCE._cleanupHTML(this, this.getDoc(), this.settings, this.getBody(), tinyMCE.visualAid, true, true); 427 tinyMCE.selectedInstance.getWin().oldfocus=tinyMCE.selectedInstance.getWin().focus; 428 tinyMCE.selectedInstance.getWin().focus=function() {}; 429 var htm = tinyMCE._cleanupHTML(this, this.getDoc(), this.settings, this.getBody(), tinyMCE.visualAid, true, true); 430 tinyMCE.selectedInstance.getWin().focus=tinyMCE.selectedInstance.getWin().oldfocus; 428 431 htm = tinyMCE._customCleanup(this, "submit_content", htm); 429 432 -
trunk/wp-includes/script-loader.php
r4098 r4101 16 16 $this->add( 'quicktags', '/wp-includes/js/quicktags.js', false, '3517' ); 17 17 $this->add( 'colorpicker', '/wp-includes/js/colorpicker.js', false, '3517' ); 18 $this->add( 'tiny_mce', '/wp-includes/js/tinymce/tiny_mce_gzip.php', false, '081 12006' );18 $this->add( 'tiny_mce', '/wp-includes/js/tinymce/tiny_mce_gzip.php', false, '08152006' ); 19 19 $this->add( 'wp_tiny_mce', '/wp-includes/js/tinymce/tiny_mce_config.php', array('tiny_mce'), '04162006' ); 20 20 $this->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.5.0'); 21 $this->add( 'autosave', '/wp-includes/js/autosave.js.php', array('prototype', 'sack'), '4 096');21 $this->add( 'autosave', '/wp-includes/js/autosave.js.php', array('prototype', 'sack'), '4101'); 22 22 if ( is_admin() ) { 23 23 $this->add( 'dbx-admin-key', '/wp-admin/dbx-admin-key-js.php', array('dbx'), '3651' );
Note: See TracChangeset
for help on using the changeset viewer.