Media: Refresh the attachment display settings when the active attachment finishes uploading. fixes #22452, see #21390.
git-svn-id: http://core.svn.wordpress.org/trunk@22710 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fd78be75d9
commit
9350f67e28
|
@ -1531,9 +1531,8 @@
|
||||||
display: new media.view.Settings.AttachmentDisplay({
|
display: new media.view.Settings.AttachmentDisplay({
|
||||||
controller: this,
|
controller: this,
|
||||||
model: display[ single.cid ],
|
model: display[ single.cid ],
|
||||||
sizes: single.get('sizes'),
|
attachment: single,
|
||||||
priority: 160,
|
priority: 160,
|
||||||
type: single.get('type'),
|
|
||||||
userSettings: state.get('displayUserSettings')
|
userSettings: state.get('displayUserSettings')
|
||||||
}).render()
|
}).render()
|
||||||
}, options );
|
}, options );
|
||||||
|
@ -3032,14 +3031,36 @@
|
||||||
template: media.template('attachment-display-settings'),
|
template: media.template('attachment-display-settings'),
|
||||||
|
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
|
var attachment = this.options.attachment;
|
||||||
|
|
||||||
_.defaults( this.options, {
|
_.defaults( this.options, {
|
||||||
userSettings: false
|
userSettings: false
|
||||||
});
|
});
|
||||||
|
|
||||||
media.view.Settings.prototype.initialize.apply( this, arguments );
|
media.view.Settings.prototype.initialize.apply( this, arguments );
|
||||||
this.model.on( 'change:link', this.updateCustomLink, this );
|
this.model.on( 'change:link', this.updateCustomLink, this );
|
||||||
|
|
||||||
|
if ( attachment )
|
||||||
|
attachment.on( 'change:uploading', this.render, this );
|
||||||
|
},
|
||||||
|
|
||||||
|
dispose: function() {
|
||||||
|
var attachment = this.options.attachment;
|
||||||
|
if ( attachment )
|
||||||
|
attachment.off( null, null, this );
|
||||||
|
|
||||||
|
media.view.Settings.prototype.dispose.apply( this, arguments );
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
|
var attachment = this.options.attachment;
|
||||||
|
if ( attachment ) {
|
||||||
|
_.extend( this.options, {
|
||||||
|
sizes: attachment.get('sizes'),
|
||||||
|
type: attachment.get('type')
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
media.view.Settings.prototype.render.call( this );
|
media.view.Settings.prototype.render.call( this );
|
||||||
this.updateCustomLink();
|
this.updateCustomLink();
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in New Issue