summaryrefslogtreecommitdiff
path: root/_source/plugins/image
diff options
context:
space:
mode:
authorDaniel Sutcliffe <dansut@users.sourceforge.net>2010-02-02 17:54:17 +0000
committerDaniel Sutcliffe <dansut@users.sourceforge.net>2010-02-02 17:54:17 +0000
commitb1de4b213ba60402d6d13a2a6892d5a422c4f8e4 (patch)
treee4adb31477ee586349cd935365a84aaee50c5899 /_source/plugins/image
parent8630f2bc4d63b3320f5469d9532a1cba1dddb7a3 (diff)
downloadckeditor-b1de4b213ba60402d6d13a2a6892d5a422c4f8e4.tar.gz
ckeditor-b1de4b213ba60402d6d13a2a6892d5a422c4f8e4.tar.bz2
ckeditor-b1de4b213ba60402d6d13a2a6892d5a422c4f8e4.zip
Update CKEditor to 3.1 and make work as a bw package
Diffstat (limited to '_source/plugins/image')
-rw-r--r--_source/plugins/image/dialogs/image.js424
-rw-r--r--_source/plugins/image/plugin.js2
2 files changed, 281 insertions, 145 deletions
diff --git a/_source/plugins/image/dialogs/image.js b/_source/plugins/image/dialogs/image.js
index 003af07..fd165af 100644
--- a/_source/plugins/image/dialogs/image.js
+++ b/_source/plugins/image/dialogs/image.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
*/
@@ -11,7 +11,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
PREVIEW = 4,
CLEANUP = 8,
regexGetSize = /^\s*(\d+)((px)|\%)?\s*$/i,
- regexGetSizeOrEmpty = /(^\s*(\d+)((px)|\%)?\s*$)|^$/i;
+ regexGetSizeOrEmpty = /(^\s*(\d+)((px)|\%)?\s*$)|^$/i,
+ pxLengthRegex = /^\d+px$/;
var onSizeChange = function()
{
@@ -61,6 +62,55 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
return 0;
};
+ // Custom commit dialog logic, where we're intended to give inline style
+ // field (txtdlgGenStyle) higher priority to avoid overwriting styles contribute
+ // by other fields.
+ function commitContent()
+ {
+ var args = arguments;
+ var inlineStyleField = this.getContentElement( 'advanced', 'txtdlgGenStyle' );
+ inlineStyleField && inlineStyleField.commit.apply( inlineStyleField, args );
+
+ this.foreach( function( widget )
+ {
+ if ( widget.commit && widget.id != 'txtdlgGenStyle' )
+ widget.commit.apply( widget, args );
+ });
+ }
+
+ // Avoid recursions.
+ var incommit;
+
+ // Synchronous field values to other impacted fields is required, e.g. border
+ // size change should alter inline-style text as well.
+ function commitInternally( targetFields )
+ {
+ if( incommit )
+ return;
+
+ incommit = 1;
+
+ var dialog = this.getDialog(),
+ element = dialog.imageElement;
+ if( element )
+ {
+ // Commit this field and broadcast to target fields.
+ this.commit( IMAGE, element );
+
+ targetFields = [].concat( targetFields );
+ var length = targetFields.length,
+ field;
+ for ( var i = 0; i < length; i++ )
+ {
+ field = dialog.getContentElement.apply( dialog, targetFields[ i ].split( ':' ) );
+ // May cause recursion.
+ field && field.setup( IMAGE, element );
+ }
+ }
+
+ incommit = 0;
+ }
+
var switchLockRatio = function( dialog, value )
{
var oImageOriginal = dialog.originalElement,
@@ -138,13 +188,15 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
if ( size )
value = checkDimension( size, value );
- value = checkDimension( element.$.style[ dimension ], value );
+ value = checkDimension( element.getStyle( dimension ), value );
this.setValue( value );
};
var imageDialog = function( editor, dialogType )
{
+ var previewPreloader;
+
var onImgLoadEvent = function()
{
// Image is ready.
@@ -162,7 +214,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
resetSize( this );
if ( this.firstLoad )
- switchLockRatio( this, 'check' );
+ CKEDITOR.tools.setTimeout( function(){ switchLockRatio( this, 'check' ); }, 0, this );
+
this.firstLoad = false;
this.dontResetSize = false;
};
@@ -203,16 +256,17 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
this.firstLoad = true;
this.addLink = false;
- //Hide loader.
- CKEDITOR.document.getById( 'ImagePreviewLoader' ).setStyle( 'display', 'none' );
- // Preview
- this.preview = CKEDITOR.document.getById( 'previewImage' );
-
var editor = this.getParentEditor(),
sel = this.getParentEditor().getSelection(),
element = sel.getSelectedElement(),
link = element && element.getAscendant( 'a' );
+ //Hide loader.
+ CKEDITOR.document.getById( 'ImagePreviewLoader' ).setStyle( 'display', 'none' );
+ // Create the preview before setup the dialog contents.
+ previewPreloader = new CKEDITOR.dom.element( 'img', editor.document );
+ this.preview = CKEDITOR.document.getById( 'previewImage' );
+
// Copy of the image
this.originalElement = editor.document.createElement( 'img' );
this.originalElement.setAttribute( 'alt', '' );
@@ -242,15 +296,19 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
this.setupContent( LINK, link );
}
- if ( element && element.getName() == 'img' && !element.getAttribute( '_cke_protected_html' ) )
- this.imageEditMode = 'img';
- else if ( element && element.getName() == 'input' && element.getAttribute( 'type' ) && element.getAttribute( 'type' ) == 'image' )
- this.imageEditMode = 'input';
+ if ( element && element.getName() == 'img' && !element.getAttribute( '_cke_realelement' )
+ || element && element.getName() == 'input' && element.getAttribute( 'type' ) == 'image' )
+ {
+ this.imageEditMode = element.getName();
+ this.imageElement = element;
+ }
- if ( this.imageEditMode || this.imageElement )
+ if ( this.imageEditMode )
{
- if ( !this.imageElement )
- this.imageElement = element;
+ // Use the original element as a buffer from since we don't want
+ // temporary changes to be committed, e.g. if the dialog is canceled.
+ this.cleanImageElement = this.imageElement;
+ this.imageElement = this.cleanImageElement.clone( true, true );
// Fill out all fields.
this.setupContent( IMAGE, this.imageElement );
@@ -258,6 +316,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
// Refresh LockRatio button
switchLockRatio ( this, true );
}
+ else
+ this.imageElement = editor.document.createElement( 'img' );
// Dont show preview if no URL given.
if ( !CKEDITOR.tools.trim( this.getValueOf( 'info', 'txtUrl' ) ) )
@@ -296,6 +356,12 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
);
editor.insertElement( this.imageElement );
}
+ else
+ {
+ // Restore the original element before all commits.
+ this.imageElement = this.cleanImageElement;
+ delete this.cleanImageElement;
+ }
}
else // Create a new image.
{
@@ -318,6 +384,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
this.commitContent( IMAGE, this.imageElement );
this.commitContent( LINK, this.linkElement );
+ // Remove empty style attribute.
+ if( !this.imageElement.getAttribute( 'style' ) )
+ this.imageElement.removeAttribute( 'style' );
+
// Insert a new Image.
if ( !this.imageEditMode )
{
@@ -358,6 +428,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
var doc = this._.element.getDocument();
this.addFocusable( doc.getById( 'btnResetSize' ), 5 );
this.addFocusable( doc.getById( 'btnLockSizes' ), 5 );
+
+ this.commitContent = commitContent;
},
onHide : function()
{
@@ -372,6 +444,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
this.originalElement.remove();
this.originalElement = false; // Dialog is closed.
}
+
+ delete this.imageElement;
},
contents : [
{
@@ -422,8 +496,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
original.on( 'error', onImgLoadErrorEvent, dialog );
original.on( 'abort', onImgLoadErrorEvent, dialog );
original.setAttribute( 'src', newUrl );
- dialog.preview.setAttribute( 'src', newUrl );
+ // Query the preloader to figure out the url impacted by based href.
+ previewPreloader.setAttribute( 'src', newUrl );
+ dialog.preview.setAttribute( 'src', previewPreloader.$.src );
updatePreview( dialog );
}
// Dont show preview if no URL given.
@@ -442,15 +518,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
this.getDialog().dontResetSize = true;
- // In IE7 the dialog is being rendered improperly when loading
- // an image with a long URL. So we need to delay it a bit. (#4122)
- setTimeout( function()
- {
- field.setValue( url ); // And call this.onChange()
- // Manually set the initial value.(#4191)
- field.setInitValue();
- field.focus();
- }, 0 );
+ field.setValue( url ); // And call this.onChange()
+ // Manually set the initial value.(#4191)
+ field.setInitValue();
+ field.focus();
}
},
commit : function( type, element )
@@ -539,6 +610,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
labelLayout : 'horizontal',
label : editor.lang.image.width,
onKeyUp : onSizeChange,
+ onChange : function()
+ {
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
+ },
validate: function()
{
var aMatch = this.getValue().match( regexGetSizeOrEmpty );
@@ -547,19 +622,20 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
return !!aMatch;
},
setup : setupDimension,
- commit : function( type, element )
+ commit : function( type, element, internalCommit )
{
+ var value = this.getValue();
if ( type == IMAGE )
{
- var value = this.getValue();
if ( value )
- element.setAttribute( 'width', value );
- else if ( !value && this.isChanged() )
- element.removeAttribute( 'width' );
+ element.setStyle( 'width', CKEDITOR.tools.cssLength( value ) );
+ else if ( !value && this.isChanged( ) )
+ element.removeStyle( 'width' );
+
+ !internalCommit && element.removeAttribute( 'width' );
}
else if ( type == PREVIEW )
{
- value = this.getValue();
var aMatch = value.match( regexGetSize );
if ( !aMatch )
{
@@ -572,7 +648,6 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
}
else if ( type == CLEANUP )
{
- element.setStyle( 'width', '0px' ); // If removeAttribute doesn't work.
element.removeAttribute( 'width' );
element.removeStyle( 'width' );
}
@@ -585,6 +660,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
labelLayout : 'horizontal',
label : editor.lang.image.height,
onKeyUp : onSizeChange,
+ onChange : function()
+ {
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
+ },
validate: function()
{
var aMatch = this.getValue().match( regexGetSizeOrEmpty );
@@ -593,32 +672,33 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
return !!aMatch;
},
setup : setupDimension,
- commit : function( type, element )
+ commit : function( type, element, internalCommit )
{
+ var value = this.getValue();
if ( type == IMAGE )
{
- var value = this.getValue();
if ( value )
- element.setAttribute( 'height', value );
- else if ( !value && this.isChanged() )
+ element.setStyle( 'height', CKEDITOR.tools.cssLength( value ) );
+ else if ( !value && this.isChanged( ) )
+ element.removeStyle( 'height' );
+
+ if( !internalCommit && type == IMAGE )
element.removeAttribute( 'height' );
}
else if ( type == PREVIEW )
{
- value = this.getValue();
var aMatch = value.match( regexGetSize );
if ( !aMatch )
{
var oImageOriginal = this.getDialog().originalElement;
if ( oImageOriginal.getCustomData( 'isReady' ) == 'true' )
- element.setStyle( 'height', oImageOriginal.$.height + 'px');
+ element.setStyle( 'height', oImageOriginal.$.height + 'px' );
}
else
- element.setStyle( 'height', value + 'px');
+ element.setStyle( 'height', value + 'px' );
}
else if ( type == CLEANUP )
{
- element.setStyle( 'height', '0px' ); // If removeAttribute doesn't work.
element.removeAttribute( 'height' );
element.removeStyle( 'height' );
}
@@ -703,6 +783,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
{
updatePreview( this.getDialog() );
},
+ onChange : function()
+ {
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
+ },
validate: function()
{
var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
@@ -711,26 +795,43 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
setup : function( type, element )
{
if ( type == IMAGE )
- this.setValue( element.getAttribute( 'border' ) );
- },
- commit : function( type, element )
- {
- if ( type == IMAGE )
{
- if ( this.getValue() || this.isChanged() )
- element.setAttribute( 'border', this.getValue() );
+ var value,
+ borderStyle = element.getStyle( 'border-width' );
+
+ borderStyle = borderStyle && borderStyle.match( /^(\d+px)(?: \1 \1 \1)?$/ );
+ value = borderStyle && parseInt( borderStyle[ 1 ], 10 );
+ !value && ( value = element.getAttribute( 'border' ) );
+
+ this.setValue( value );
}
- else if ( type == PREVIEW )
+ },
+ commit : function( type, element, internalCommit )
+ {
+ var value = parseInt( this.getValue(), 10 );
+ if ( type == IMAGE || type == PREVIEW )
{
- var value = parseInt( this.getValue(), 10 );
- value = isNaN( value ) ? 0 : value;
- element.setAttribute( 'border', value );
- element.setStyle( 'border', value + 'px solid black' );
+ if ( value )
+ {
+ element.setStyle( 'border-width', CKEDITOR.tools.cssLength( value ) );
+ element.setStyle( 'border-style', 'solid' );
+ }
+ else if ( !value && this.isChanged() )
+ {
+ element.removeStyle( 'border-width' );
+ element.removeStyle( 'border-style' );
+ element.removeStyle( 'border-color' );
+ }
+
+ if( !internalCommit && type == IMAGE )
+ element.removeAttribute( 'border' );
}
else if ( type == CLEANUP )
{
element.removeAttribute( 'border' );
- element.removeStyle( 'border' );
+ element.removeStyle( 'border-width' );
+ element.removeStyle( 'border-style' );
+ element.removeStyle( 'border-color' );
}
}
},
@@ -745,6 +846,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
{
updatePreview( this.getDialog() );
},
+ onChange : function()
+ {
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
+ },
validate: function()
{
var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
@@ -754,25 +859,41 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
{
if ( type == IMAGE )
{
- var value = element.getAttribute( 'hspace' );
- if ( value != -1 ) // In IE empty = -1.
- this.setValue( value );
+ var value,
+ marginLeftPx,
+ marginRightPx,
+ marginLeftStyle = element.getStyle( 'margin-left' ),
+ marginRightStyle = element.getStyle( 'margin-right' );
+
+ marginLeftStyle = marginLeftStyle && marginLeftStyle.match( pxLengthRegex );
+ marginRightStyle = marginRightStyle && marginRightStyle.match( pxLengthRegex );
+ marginLeftPx = parseInt( marginLeftStyle, 10 );
+ marginRightPx = parseInt( marginRightStyle, 10 );
+
+ value = ( marginLeftPx == marginRightPx ) && marginLeftPx;
+ !value && ( value = element.getAttribute( 'hspace' ) );
+
+ this.setValue( value );
}
},
- commit : function( type, element )
+ commit : function( type, element, internalCommit )
{
- if ( type == IMAGE )
+ var value = parseInt( this.getValue(), 10 );
+ if ( type == IMAGE || type == PREVIEW )
{
- if ( this.getValue() || this.isChanged() )
- element.setAttribute( 'hspace', this.getValue() );
- }
- else if ( type == PREVIEW )
- {
- var value = parseInt( this.getValue(), 10 );
- value = isNaN( value ) ? 0 : value;
- element.setAttribute( 'hspace', value );
- element.setStyle( 'margin-left', value + 'px' );
- element.setStyle( 'margin-right', value + 'px' );
+ if ( value )
+ {
+ element.setStyle( 'margin-left', CKEDITOR.tools.cssLength( value ) );
+ element.setStyle( 'margin-right', CKEDITOR.tools.cssLength( value ) );
+ }
+ else if ( !value && this.isChanged( ) )
+ {
+ element.removeStyle( 'margin-left' );
+ element.removeStyle( 'margin-right' );
+ }
+
+ if( !internalCommit && type == IMAGE )
+ element.removeAttribute( 'hspace' );
}
else if ( type == CLEANUP )
{
@@ -793,6 +914,10 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
{
updatePreview( this.getDialog() );
},
+ onChange : function()
+ {
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
+ },
validate: function()
{
var func = CKEDITOR.dialog.validate.integer( editor.lang.common.validateNumberFailed );
@@ -801,22 +926,41 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
setup : function( type, element )
{
if ( type == IMAGE )
- this.setValue( element.getAttribute( 'vspace' ) );
- },
- commit : function( type, element )
- {
- if ( type == IMAGE )
{
- if ( this.getValue() || this.isChanged() )
- element.setAttribute( 'vspace', this.getValue() );
+ var value,
+ marginTopPx,
+ marginBottomPx,
+ marginTopStyle = element.getStyle( 'margin-top' ),
+ marginBottomStyle = element.getStyle( 'margin-bottom' );
+
+ marginTopStyle = marginTopStyle && marginTopStyle.match( pxLengthRegex );
+ marginBottomStyle = marginBottomStyle && marginBottomStyle.match( pxLengthRegex );
+ marginTopPx = parseInt( marginTopStyle, 10 );
+ marginBottomPx = parseInt( marginBottomStyle, 10 );
+
+ value = ( marginTopPx == marginBottomPx ) && marginTopPx;
+ !value && ( value = element.getAttribute( 'vspace' ) );
+ this.setValue( value );
}
- else if ( type == PREVIEW )
+ },
+ commit : function( type, element, internalCommit )
+ {
+ var value = parseInt( this.getValue(), 10 );
+ if ( type == IMAGE || type == PREVIEW )
{
- var value = parseInt( this.getValue(), 10 );
- value = isNaN( value ) ? 0 : value;
- element.setAttribute( 'vspace', this.getValue() );
- element.setStyle( 'margin-top', value + 'px' );
- element.setStyle( 'margin-bottom', value + 'px' );
+ if ( value )
+ {
+ element.setStyle( 'margin-top', CKEDITOR.tools.cssLength( value ) );
+ element.setStyle( 'margin-bottom', CKEDITOR.tools.cssLength( value ) );
+ }
+ else if ( !value && this.isChanged( ) )
+ {
+ element.removeStyle( 'margin-top' );
+ element.removeStyle( 'margin-bottom' );
+ }
+
+ if( !internalCommit && type == IMAGE )
+ element.removeAttribute( 'vspace' );
}
else if ( type == CLEANUP )
{
@@ -838,53 +982,65 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
[
[ editor.lang.common.notSet , ''],
[ editor.lang.image.alignLeft , 'left'],
- [ editor.lang.image.alignAbsBottom , 'absBottom'],
- [ editor.lang.image.alignAbsMiddle , 'absMiddle'],
- [ editor.lang.image.alignBaseline , 'baseline'],
- [ editor.lang.image.alignBottom , 'bottom'],
- [ editor.lang.image.alignMiddle , 'middle'],
- [ editor.lang.image.alignRight , 'right'],
- [ editor.lang.image.alignTextTop , 'textTop'],
- [ editor.lang.image.alignTop , 'top']
+ [ editor.lang.image.alignRight , 'right']
+ // Backward compatible with v2 on setup when specified as attribute value,
+ // while these values are no more available as select options.
+ // [ editor.lang.image.alignAbsBottom , 'absBottom'],
+ // [ editor.lang.image.alignAbsMiddle , 'absMiddle'],
+ // [ editor.lang.image.alignBaseline , 'baseline'],
+ // [ editor.lang.image.alignTextTop , 'text-top'],
+ // [ editor.lang.image.alignBottom , 'bottom'],
+ // [ editor.lang.image.alignMiddle , 'middle'],
+ // [ editor.lang.image.alignTop , 'top']
],
onChange : function()
{
updatePreview( this.getDialog() );
+ commitInternally.call( this, 'advanced:txtdlgGenStyle' );
},
setup : function( type, element )
{
if ( type == IMAGE )
- this.setValue( element.getAttribute( 'align' ) );
+ {
+ var value = element.getStyle( 'float' );
+ switch( value )
+ {
+ // Ignore those unrelated values.
+ case 'inherit':
+ case 'none':
+ value = '';
+ }
+
+ !value && ( value = ( element.getAttribute( 'align' ) || '' ).toLowerCase() );
+ this.setValue( value );
+ }
},
- commit : function( type, element )
+ commit : function( type, element, internalCommit )
{
var value = this.getValue();
- if ( type == IMAGE )
- {
- if ( value || this.isChanged() )
- element.setAttribute( 'align', value );
- }
- else if ( type == PREVIEW )
+ if ( type == IMAGE || type == PREVIEW )
{
- element.setAttribute( 'align', this.getValue() );
-
- if ( value == 'absMiddle' || value == 'middle' )
- element.setStyle( 'vertical-align', 'middle' );
- else if ( value == 'top' || value == 'textTop' )
- element.setStyle( 'vertical-align', 'top' );
- else
- element.removeStyle( 'vertical-align' );
-
- if ( value == 'right' || value == 'left' )
- element.setStyle( 'styleFloat', value );
- else
- element.removeStyle( 'styleFloat' );
+ if ( value )
+ element.setStyle( 'float', value );
+ else if ( !value && this.isChanged( ) )
+ element.removeStyle( 'float' );
+ if( !internalCommit && type == IMAGE )
+ {
+ value = ( element.getAttribute( 'align' ) || '' ).toLowerCase();
+ switch( value )
+ {
+ // we should remove it only if it matches "left" or "right",
+ // otherwise leave it intact.
+ case 'left':
+ case 'right':
+ element.removeAttribute( 'align' );
+ }
+ }
}
else if ( type == CLEANUP )
- {
- element.removeAttribute( 'align' );
- }
+ element.removeStyle( 'float' );
+
}
}
]
@@ -903,7 +1059,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
'<div id="ImagePreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div>'+
'<div id="ImagePreviewBox">'+
'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="previewLink">'+
- '<img id="previewImage" src="" alt="" /></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. '+
+ '<img id="previewImage" alt="" /></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. '+
'Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, '+
'nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.' +
'</div>'+'</div>'
@@ -1188,40 +1344,20 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
};
}
},
+ onChange : function ()
+ {
+ commitInternally.call( this,
+ [ 'info:cmbFloat', 'info:cmbAlign',
+ 'info:txtVSpace', 'info:txtHSpace',
+ 'info:txtBorder',
+ 'info:txtWidth', 'info:txtHeight' ] );
+ updatePreview( this );
+ },
commit : function( type, element )
{
if ( type == IMAGE && ( this.getValue() || this.isChanged() ) )
{
element.setAttribute( 'style', this.getValue() );
-
- // Set STYLE dimensions.
- var height = element.getAttribute( 'height' ),
- width = element.getAttribute( 'width' );
-
- if ( this.attributesInStyle && this.attributesInStyle.height )
- {
- if ( height )
- {
- if ( height.match( regexGetSize )[2] == '%' ) // % is allowed
- element.setStyle( 'height', height + '%' );
- else
- element.setStyle( 'height', height + 'px' );
- }
- else
- element.removeStyle( 'height' );
- }
- if ( this.attributesInStyle && this.attributesInStyle.width )
- {
- if ( width )
- {
- if ( width.match( regexGetSize )[2] == '%' ) // % is allowed
- element.setStyle( 'width', width + '%' );
- else
- element.setStyle( 'width', width + 'px' );
- }
- else
- element.removeStyle( 'width' );
- }
}
}
}
diff --git a/_source/plugins/image/plugin.js b/_source/plugins/image/plugin.js
index 6b4cbeb..0222b56 100644
--- a/_source/plugins/image/plugin.js
+++ b/_source/plugins/image/plugin.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
*/