Make WordPress Core

Ticket #17729: 17729.diff

File 17729.diff, 966 bytes (added by koopersmith, 13 years ago)
  • wp-admin/js/wp-fullscreen.dev.js

     
    293293                scrollTo(0, 0);
    294294
    295295                // needed it for IE7 and compat mode
    296                 $('#wpadminbar').hide(); 
     296                $('#wpadminbar').hide();
    297297        });
    298298
    299299        ps.subscribe( 'shown', function() { // This event occurs after the DFW overlay is shown
     
    320320
    321321        ps.subscribe( 'hide', function() { // This event occurs before the overlay blocks DFW.
    322322
    323                 api.savecontent();
    324323                $( document ).unbind( '.fullscreen' );
    325324                $(s.textarea_obj).unbind('.grow');
    326325
     
    343342                        switchEditors.go( s.editor_id, 'html' );
    344343                }
    345344
     345                // Save content must be after switchEditors or content will be overwritten. See #17229.
     346                api.savecontent();
     347
    346348                $( document.body ).removeClass( 'fullscreen-active' );
    347349                scrollTo(0, s.orig_y);
    348350                $('#wpadminbar').show();