diff --git a/source/Ox.UI/js/Video/Ox.VideoPlayer.js b/source/Ox.UI/js/Video/Ox.VideoPlayer.js index 50008cf2..daffad71 100644 --- a/source/Ox.UI/js/Video/Ox.VideoPlayer.js +++ b/source/Ox.UI/js/Video/Ox.VideoPlayer.js @@ -145,7 +145,13 @@ Ox.VideoPlayer = function(options, self) { }, key_f: function() { // need timeout so the "f" doesn't appear in the input field - setTimeout(self.$findInput.focusInput, 0); + setTimeout(function() { + if (self.$find.is(':hidden')) { + toggleFind(); + } else { + self.$findInput.focusInput(); + } + }, 0); }, key_g: function() { goToNextResult(1);