X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fthemes%2Fdefault%2Ftheme.js;h=9eb488daa01216e9ccb19f3c5e2eca45f9639b1d;hb=a272c66d841421f8bf933c16535bdcde1c4649fc;hp=f7ff8e485df66f24119950ec521d2cf2cbc32b0a;hpb=f0610347140239143439a511ee2bd48cb784f470;p=ckeditor.git diff --git a/_source/themes/default/theme.js b/_source/themes/default/theme.js index f7ff8e4..9eb488d 100644 --- a/_source/themes/default/theme.js +++ b/_source/themes/default/theme.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2011, 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 */ @@ -242,6 +242,20 @@ CKEDITOR.themes.add( 'default', (function() title = body.getChild( 0 ), close = body.getChild( 1 ); + // IFrame shim for dialog that masks activeX in IE. (#7619) + if ( CKEDITOR.env.ie && !CKEDITOR.env.ie6Compat ) + { + var isCustomDomain = CKEDITOR.env.isCustomDomain(), + src = 'javascript:void(function(){' + encodeURIComponent( 'document.open();' + ( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) + 'document.close();' ) + '}())', + iframe = CKEDITOR.dom.element.createFromHtml( '' ); + iframe.appendTo( body.getParent() ); + } + // Make the Title and Close Button unselectable. title.unselectable(); close.unselectable(); @@ -325,25 +339,23 @@ CKEDITOR.editor.prototype.resize = function( width, height, isContentHeight, res { var container = this.container, contents = CKEDITOR.document.getById( 'cke_contents_' + this.name ), + contentsFrame = CKEDITOR.env.webkit && this.document && this.document.getWindow().$.frameElement, outer = resizeInner ? container.getChild( 1 ) : container; - // Resize the width first. - // WEBKIT BUG: Webkit requires that we put the editor off from display when we - // resize it. If we don't, the browser crashes! - CKEDITOR.env.webkit && outer.setStyle( 'display', 'none' ); // Set as border box width. (#5353) outer.setSize( 'width', width, true ); - if ( CKEDITOR.env.webkit ) - { - outer.$.offsetWidth; - outer.setStyle( 'display', '' ); - } + + // WebKit needs to refresh the iframe size to avoid rendering issues. (1/2) (#8348) + contentsFrame && ( contentsFrame.style.width = '1%' ); // Get the height delta between the outer table and the content area. // If we're setting the content area's height, then we don't need the delta. var delta = isContentHeight ? 0 : ( outer.$.offsetHeight || 0 ) - ( contents.$.clientHeight || 0 ); contents.setStyle( 'height', Math.max( height - delta, 0 ) + 'px' ); + // WebKit needs to refresh the iframe size to avoid rendering issues. (2/2) (#8348) + contentsFrame && ( contentsFrame.style.width = '100%' ); + // Emit a resize event. this.fire( 'resize' ); };