X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fwindow.js;h=813cd2047e2144eeabfeaf553f3ab2d523c71e59;hb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;hp=44426d073738bc56884febd7ee84b5ff899ff445;hpb=ea7e3453c7b0f023b050aca6d9f83ab372860d91;p=ckeditor.git diff --git a/_source/core/dom/window.js b/_source/core/dom/window.js index 44426d0..813cd20 100644 --- a/_source/core/dom/window.js +++ b/_source/core/dom/window.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2013, 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(); },