X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fwindow.js;h=01e2d5881528f98b686b460c6a99245baa4bb0a6;hp=1a4050d95f41d2a48d91d9d3d9f05db8c5721cdb;hb=c6e377a02b54abc07129d72b632763c727476a15;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6 diff --git a/_source/core/dom/window.js b/_source/core/dom/window.js index 1a4050d..01e2d58 100644 --- a/_source/core/dom/window.js +++ b/_source/core/dom/window.js @@ -36,7 +36,7 @@ CKEDITOR.tools.extend( CKEDITOR.dom.window.prototype, focus : function() { // Webkit is sometimes failed to focus iframe, blur it first(#3835). - if( CKEDITOR.env.webkit && this.$.parent ) + if ( CKEDITOR.env.webkit && this.$.parent ) this.$.parent.focus(); this.$.focus(); },