X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fwsc%2Fdialogs%2Fwsc.js;h=047d23a8d1d096d6e2b9f05b70965a47fab5f111;hb=a272c66d841421f8bf933c16535bdcde1c4649fc;hp=7cc48edcaad40db973aed5325fd9bfc4c924b720;hpb=9afde8772159bd3436f1f5b7862960307710ae5a;p=ckeditor.git diff --git a/_source/plugins/wsc/dialogs/wsc.js b/_source/plugins/wsc/dialogs/wsc.js index 7cc48ed..047d23a 100644 --- a/_source/plugins/wsc/dialogs/wsc.js +++ b/_source/plugins/wsc/dialogs/wsc.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2010, 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 */ @@ -31,7 +31,7 @@ CKEDITOR.dialog.add( 'checkspell', function( editor ) ''; var wscCoreUrl = editor.config.wsc_customLoaderScript || ( protocol + - '//loader.spellchecker.net/sproxy_fck/sproxy.php' + '//loader.webspellchecker.net/sproxy_fck/sproxy.php' + '?plugin=fck2' + '&customerid=' + editor.config.wsc_customerId + '&cmd=script&doc=wsc&schema=22' @@ -186,6 +186,7 @@ CKEDITOR.dialog.on( 'resize', function( evt ) var content = dialog.getContentElement( 'general', 'content' ).getElement(), iframe = content && content.getChild( 2 ); - iframe && iframe.setStyle( 'height', data.height + 'px' ); + iframe && iframe.setSize( 'height', data.height ); + iframe && iframe.setSize( 'width', data.width ); } });