Remove jquery from ShortcutService.js

This commit is contained in:
Julian Descottes 2018-04-08 13:10:06 +02:00
parent 22cec2e8c7
commit 2726af2d81

View File

@ -9,7 +9,7 @@
* @public
*/
ns.ShortcutService.prototype.init = function() {
$(document.body).keydown($.proxy(this.onKeyDown_, this));
document.body.addEventListener('keydown', this.onKeyDown_.bind(this));
};
/**