Addded new keyboard shortcut to edit the task description

This commit is contained in:
Frederic Guillot
2016-03-20 16:29:20 -04:00
parent 77c84410ec
commit 4c733eb715
4 changed files with 7 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -11,6 +11,10 @@ Kanboard.Task.prototype.keyboardShortcuts = function() {
self.app.get("Popover").open(taskView.data("edit-url"));
});
Mousetrap.bind("d", function() {
self.app.get("Popover").open(taskView.data("description-url"));
});
Mousetrap.bind("c", function() {
self.app.get("Popover").open(taskView.data("comment-url"));
});