diff --git a/static/js/textPanel.js b/static/js/textPanel.js index c2f49426..538cde2e 100644 --- a/static/js/textPanel.js +++ b/static/js/textPanel.js @@ -429,7 +429,13 @@ pandora.ui.textHTML = function(text) { scrollToPosition(); return that; }; - + that.bindEvent({ + mousedown: function() { + setTimeout(function() { + !Ox.Focus.focusedElementIsInput() && that.gainFocus(); + }); + } + }); return that; };