Remove the move and archive all cards of a list feature

This operation should now be handled using the multi-selection
feature, ie “select all cards” and then move them or click the
“archive selection” button. This new process add an extra click which
I consider reasonable enough for a relatively rare operation -- plus I
want to encourage mutli-selection usage.

Closes #390.
This commit is contained in:
Maxime Quandalle 2015-12-09 18:45:55 -05:00
parent f9a60616df
commit 5bdf91bd05
4 changed files with 1 additions and 30 deletions

View file

@ -95,6 +95,7 @@ BlazeComponent.extendComponent({
},
'click .js-archive-selection'() {
mutateSelectedCards('archive');
EscapeActions.executeUpTo('multiselection');
},
}];
},