X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fcore%2Fdom%2Fwindow.js;h=01e2d5881528f98b686b460c6a99245baa4bb0a6;hb=e371ddf8abcb89013e20e6d0dd746adec344d0e5;hp=44426d073738bc56884febd7ee84b5ff899ff445;hpb=ea7e3453c7b0f023b050aca6d9f83ab372860d91;p=ckeditor.git diff --git a/_source/core/dom/window.js b/_source/core/dom/window.js index 44426d0..01e2d58 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-2010, 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(); },