Ticket #24756: 24756.patch
File 24756.patch, 741 bytes (added by , 12 years ago) |
---|
-
wp-includes/js/autosave.js
520 520 init: function( settings ) { 521 521 var self = this; 522 522 523 // Run only on the Add/Edit Post screens and in browsers that have sessionStorage524 if ( 'post' != window.pagenow || ! this.checkStorage())523 // Check if the browser supports sessionStorage and editor.js is loaded 524 if ( ! this.checkStorage() || typeof switchEditors == 'undefined' ) 525 525 return; 526 // editor.js has to be loaded before autosave.js527 if ( typeof switchEditors == 'undefined' )528 return;529 526 530 527 if ( settings ) 531 528 $.extend( this, settings );