X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fplugins%2Fresize%2Fplugin.js;fp=sources%2Fplugins%2Fresize%2Fplugin.js;h=123dd2d9714a57b7b660275c2e99f26f9a2b708e;hp=095ee1299c488aae53ed4ba2fc865cf3120b255e;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/plugins/resize/plugin.js b/sources/plugins/resize/plugin.js index 095ee12..123dd2d 100644 --- a/sources/plugins/resize/plugin.js +++ b/sources/plugins/resize/plugin.js @@ -19,7 +19,7 @@ CKEDITOR.plugins.add( 'resize', { if ( resizeVertical ) height = Math.max( config.resize_minHeight, Math.min( internalHeight, config.resize_maxHeight ) ); - // DO NOT impose fixed size with single direction resize. (#6308) + // DO NOT impose fixed size with single direction resize. (http://dev.ckeditor.com/ticket/6308) editor.resize( resizeHorizontal ? width : null, height ); } @@ -37,7 +37,7 @@ CKEDITOR.plugins.add( 'resize', { var spaceId = editor.ui.spaceId( 'resizer' ); // Resize in the same direction of chrome, - // which is identical to dir of editor element. (#6614) + // which is identical to dir of editor element. (http://dev.ckeditor.com/ticket/6614) var resizeDir = editor.element ? editor.element.getDirection( 1 ) : 'ltr'; !config.resize_dir && ( config.resize_dir = 'vertical' );