From a0bcf724fcec5adc470eae5157fb94ffd003f845 Mon Sep 17 00:00:00 2001 From: Piotr Kaminski Date: Wed, 4 Mar 2015 14:14:43 -0800 Subject: [PATCH] Don't map combo back to hotkey, as that loses information. --- src/hotkeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotkeys.js b/src/hotkeys.js index 0b99f41..1913568 100644 --- a/src/hotkeys.js +++ b/src/hotkeys.js @@ -500,7 +500,7 @@ // $apply() to make sure angular's digest happens $rootScope.$apply(function() { // call the original hotkey callback with the keyboard event - callback(event, _get(combo)); + callback(event, combo); }); }; }