diff --git a/source/Ox.UI/js/Core/Keyboard.js b/source/Ox.UI/js/Core/Keyboard.js index 7a271fc0..905d7c2b 100644 --- a/source/Ox.UI/js/Core/Keyboard.js +++ b/source/Ox.UI/js/Core/Keyboard.js @@ -40,6 +40,11 @@ Ox.Keyboard = (function() { bound.forEach(function(id) { Ox.UI.elements[id].triggerEvent('key_' + key); }); + + // Firefox opens quick find on slash and quick link find on quote otherwise + if (keyName == 'slash' || keyName == 'quote') { + event.preventDefault(); + } } if (focused !== null && bound.indexOf(focused) == -1) { $focused.triggerEvent('key_' + key);