Quote:
Originally Posted by tbworld
Thank you for restating. Let me look at it a bit, and the answer is yes. I just didn't notice it was there. I am a little surprised it is not stripped by default, but obviously I overlooked something.
Quick fixes are never quick
I will take a look at it later today, thanks for pointing it out. If I have time I will rewrite the plugin in JavaScript and fix the image positioning problems.
|
nice sentence! 
thanks a lot, :flower:
I taked a look at plugin.js in justify folder in "clientscript\ckeditor\plugins".
Justify completely defined there. look at this codes:
Code:
CKEDITOR.plugins.add( 'justify',
{
init : function( editor )
{
var left = new justifyCommand( editor, 'justifyleft', 'left' ),
center = new justifyCommand( editor, 'justifycenter', 'center' ),
right = new justifyCommand( editor, 'justifyright', 'right' ),
justify = new justifyCommand( editor, 'justifyblock', 'justify' );
I think these codes are OK. the problem is somewhere else.