From 43a3da6c56148874aab13a22088cf17f40e00323 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Mon, 9 Jan 2017 20:31:07 +0100 Subject: [PATCH] Keyboard shortcuts of this extension now override everything else. --- js/uw.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/uw.js b/js/uw.js index c1fb05e..3ab15d0 100644 --- a/js/uw.js +++ b/js/uw.js @@ -401,6 +401,8 @@ function keydownSetup(){ if(debugmsg) console.log("we pressed a key: ", event.key , " | mods match?", mods, "keybinding: ", KEYBINDS[i]); if(mods){ + event.stopPropagation(); + console.log("uw::keydown | keys match. calling changeCSS()"); if(KEYBINDS[i].action == "char"){ changeCSS("char", KEYBINDS[i].targetAR);