diff --git a/source/Ox.UI/js/Core/Event.js b/source/Ox.UI/js/Core/Event.js index 32cfd67e..b7fd97c5 100644 --- a/source/Ox.UI/js/Core/Event.js +++ b/source/Ox.UI/js/Core/Event.js @@ -72,8 +72,10 @@ } function onKeydown(e) { + if (Ox.Focus.focusedElementIsInput()) { + return; + } var $element = Ox.Focus.focusedElement(), - isInput = Ox.Focus.focusedElementIsInput(), keyName = Ox.KEYS[e.keyCode], keyBasename = keyName.split('.')[0], key = Object.keys(Ox.MODIFIER_KEYS).filter(function(key) {