In `media.view.BulkSelectionActionButton.click()`, do not assume that `delete` is the only possible bulk action.
Fixes #29101. Built from https://develop.svn.wordpress.org/trunk@29403 git-svn-id: http://core.svn.wordpress.org/trunk@29181 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6b8ee0942c
commit
27b0d4cd20
|
@ -647,10 +647,12 @@
|
||||||
var selection = this.controller.controller.state().get('selection');
|
var selection = this.controller.controller.state().get('selection');
|
||||||
media.view.Button.prototype.click.apply( this, arguments );
|
media.view.Button.prototype.click.apply( this, arguments );
|
||||||
|
|
||||||
// Currently assumes delete is the only action
|
if ( 'delete' === this.controller.model.get( 'currentAction' ) ) {
|
||||||
if ( confirm( l10n.warnBulkDelete ) ) {
|
// Currently assumes delete is the only action
|
||||||
while ( selection.length > 0) {
|
if ( confirm( l10n.warnBulkDelete ) ) {
|
||||||
selection.at(0).destroy();
|
while ( selection.length > 0 ) {
|
||||||
|
selection.at(0).destroy();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue