fix focusing window with click on ie

This commit is contained in:
nightwing 2014-11-14 01:27:59 +04:00
commit bf7eba2253

View file

@ -48,6 +48,10 @@ var MouseHandler = function(editor) {
new DragdropHandler(this);
var focusEditor = function(e) {
// because we have to call event.preventDefault() any window on ie and iframes
// on other browsers do not get focus, so we have to call window.focus() here
if (!document.hasFocus || !document.hasFocus())
window.focus();
editor.focus();
};