summaryrefslogtreecommitdiff
path: root/web-ui/app/js/services
diff options
context:
space:
mode:
authorJefferson Stachelski <jstachel@thoughtworks.com>2015-12-31 16:52:49 -0200
committerJefferson Stachelski <jstachel@thoughtworks.com>2015-12-31 16:52:49 -0200
commitaa66beb0c74ebaa950a083ed991f6e5f50f9c9ac (patch)
treee0df762cef10651b025058fb75733f5e125b6e98 /web-ui/app/js/services
parent111205c8cd74d553201b42db3041d870ae833165 (diff)
Issue #25 - Implemented shortcuts on UI
Diffstat (limited to 'web-ui/app/js/services')
-rw-r--r--web-ui/app/js/services/delete_service.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/web-ui/app/js/services/delete_service.js b/web-ui/app/js/services/delete_service.js
index 5cf86d63..92b5838b 100644
--- a/web-ui/app/js/services/delete_service.js
+++ b/web-ui/app/js/services/delete_service.js
@@ -53,6 +53,7 @@ define(['flight/lib/component', 'page/events', 'views/i18n'], function (defineCo
this.after('initialize', function () {
this.on(document, events.ui.mail.delete, this.deleteEmail);
this.on(document, events.ui.mail.deleteMany, this.deleteManyEmails);
+ this.on(document, events.shortcuts.deleteMail, this.deleteEmail);
});
});