Make WordPress Core

Ticket #21776: 21776.galleries.diff

File 21776.galleries.diff, 1.0 KB (added by koopersmith, 12 years ago)
  • wp-includes/js/media-editor.js

     
    304304                                        editing:   true,
    305305                                        multiple:  true,
    306306                                        selection: selection
    307                                 });
     307                                }).open();
    308308
    309309                                return this.frame;
    310310                        }
  • wp-includes/js/media-views.js

     
    11411141                        this.on( 'attach', _.bind( this.views.ready, this.views ), this );
    11421142                },
    11431143
     1144                render: function() {
     1145                        // Activate the default state if no active state exists.
     1146                        if ( ! this.state() && this.options.state )
     1147                                this.setState( this.options.state );
     1148
     1149                        return media.view.Frame.prototype.render.apply( this, arguments );
     1150                },
     1151
    11441152                createIframeStates: function( options ) {
    11451153                        var settings = media.view.settings,
    11461154                                tabs = settings.tabs,