summaryrefslogtreecommitdiffstats
path: root/client/components/sidebar/sidebarFilters.js
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-12-09 18:45:55 -0500
committerMaxime Quandalle <maxime@quandalle.com>2015-12-09 18:45:55 -0500
commit5bdf91bd055031b21493db46b2ef38df3b3e07c4 (patch)
tree8ca30d77ab1a3e3797ce683a3e46081839640f74 /client/components/sidebar/sidebarFilters.js
parentf9a60616df625ea71386442de512fbfb43602d09 (diff)
downloadwekan-5bdf91bd055031b21493db46b2ef38df3b3e07c4.tar.gz
wekan-5bdf91bd055031b21493db46b2ef38df3b3e07c4.tar.bz2
wekan-5bdf91bd055031b21493db46b2ef38df3b3e07c4.zip
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.
Diffstat (limited to 'client/components/sidebar/sidebarFilters.js')
-rw-r--r--client/components/sidebar/sidebarFilters.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/components/sidebar/sidebarFilters.js b/client/components/sidebar/sidebarFilters.js
index bdecd63e..50e76200 100644
--- a/client/components/sidebar/sidebarFilters.js
+++ b/client/components/sidebar/sidebarFilters.js
@@ -95,6 +95,7 @@ BlazeComponent.extendComponent({
},
'click .js-archive-selection'() {
mutateSelectedCards('archive');
+ EscapeActions.executeUpTo('multiselection');
},
}];
},