X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fwindow.js;h=755b658f7f95ae4590d2823fc107afe79c2c10c3;hb=2f22c0c38f17e75be5541089076885442aaa2377;hp=1a4050d95f41d2a48d91d9d3d9f05db8c5721cdb;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6;p=ckeditor.git diff --git a/_source/core/dom/window.js b/_source/core/dom/window.js index 1a4050d..755b658 100644 --- a/_source/core/dom/window.js +++ b/_source/core/dom/window.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -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(); },