summaryrefslogtreecommitdiff
path: root/assets/js/src
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/src')
-rw-r--r--assets/js/src/Task.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/assets/js/src/Task.js b/assets/js/src/Task.js
index 162386ea..e19e6b2d 100644
--- a/assets/js/src/Task.js
+++ b/assets/js/src/Task.js
@@ -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"));
});