Make WordPress Core

Ticket #22155: 22155.diff

File 22155.diff, 1.7 KB (added by duck_, 12 years ago)
  • wp-includes/js/autosave.js

     
    284284                        doAutoSave = false;
    285285                } else {
    286286                        if ( 'mce_fullscreen' == ed.id || 'wp_mce_fullscreen' == ed.id )
    287                                 tinymce.get('content').setContent(ed.getContent({format : 'raw'}), {format : 'raw'});
     287                                tinymce.get('content').setContent(ed.getContent());
    288288                        tinymce.triggerSave();
    289289                }
    290290        }
  • wp-includes/js/mce-view.js

     
    544544                                this.img['class'] = className;
    545545
    546546                                this.$el.addClass('spinner');
    547                                 this.model.fetch().done( _.bind( this.render, this ) );
     547                                if ( ! this.model.get('url') )
     548                                        this.model.fetch().done( _.bind( this.render, this ) );
     549                                else
     550                                        _.defer( _.bind( this.render, this ) );
    548551                        },
    549552
    550553                        render: function() {
     
    717720                        }
    718721                }
    719722        });
    720 }(jQuery));
    721  No newline at end of file
     723}(jQuery));
  • wp-includes/js/tinymce/plugins/wpfullscreen/editor_plugin_src.js

     
    2929                                ed.focus();
    3030                                edd = tinyMCE.get( ed.getParam('wp_fullscreen_editor_id') );
    3131
    32                                 edd.setContent( ed.getContent({format : 'raw'}), {format : 'raw'} );
     32                                edd.setContent( ed.getContent() );
    3333                        });
    3434
    3535                        ed.addCommand('wpFullScreenInit', function() {