summaryrefslogtreecommitdiffstats
path: root/client/components/lists/listMenu.jade
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-08-28 06:21:30 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-08-28 06:22:35 +0200
commit691c3aff684e945add6a4c1a119094e77fa32e6c (patch)
treecb00e5e887649749ec9734a6e1bdedd8868d161c /client/components/lists/listMenu.jade
parent91cfcf7b12b5e7c137c2e765b2c378dde6b82966 (diff)
downloadwekan-691c3aff684e945add6a4c1a119094e77fa32e6c.tar.gz
wekan-691c3aff684e945add6a4c1a119094e77fa32e6c.tar.bz2
wekan-691c3aff684e945add6a4c1a119094e77fa32e6c.zip
Improve the list menu
* Grow the click-able zone of the list menu * Remove a dead link on the list menu * Merge list menu files with header menu to be consistent with the board components internal organization Closes #106
Diffstat (limited to 'client/components/lists/listMenu.jade')
-rw-r--r--client/components/lists/listMenu.jade29
1 files changed, 0 insertions, 29 deletions
diff --git a/client/components/lists/listMenu.jade b/client/components/lists/listMenu.jade
deleted file mode 100644
index 052f064c..00000000
--- a/client/components/lists/listMenu.jade
+++ /dev/null
@@ -1,29 +0,0 @@
-template(name="listActionPopup")
- ul.pop-over-list
- li: a.js-add-card {{_ 'add-card'}}
- li: a.highlight-icon.js-list-subscribe {{_ 'subscribe'}}
- if cards.count
- hr
- ul.pop-over-list
- li: a.js-select-cards {{_ 'list-select-cards'}}
- li: a.js-move-cards {{_ 'list-move-cards'}}
- li: a.js-archive-cards {{_ 'list-archive-cards'}}
- hr
- ul.pop-over-list
- li: a.js-close-list {{_ 'archive-list'}}
-
-template(name="listMoveCardsPopup")
- +boardLists
-
-template(name="boardLists")
- ul.pop-over-list
- each currentBoard.lists
- li
- if($eq ../_id _id)
- a.disabled {{title}} ({{_ 'current'}})
- else
- a.js-select-list= title
-
-template(name="listArchiveCardsPopup")
- p {{_ 'list-archive-cards-pop'}}
- input.js-confirm.negate.full(type="submit" value="{{_ 'archive-all'}}")