Add dropdown menu on each board column title to close all tasks

This commit is contained in:
Frederic Guillot
2016-01-17 11:03:33 -05:00
parent 3c57626918
commit d45fa6a33b
44 changed files with 310 additions and 72 deletions

View File

@@ -141,7 +141,7 @@ Board.prototype.listen = function() {
self.toggleColumnScrolling();
});
$(document).on("click", ".board-column-title", function() {
$(document).on("click", ".board-toggle-column-view", function() {
self.toggleColumnViewMode($(this).data("column-id"));
});
};