X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fpiedsjaloux-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fplugins%2Fresize%2Fplugin.js;fp=sources%2Fplugins%2Fresize%2Fplugin.js;h=123dd2d9714a57b7b660275c2e99f26f9a2b708e;hp=be9673dfc24035bf3e053b00e89b3916ebef4c6e;hb=317f8f8f0651488f226b5280a8f036c7c135c639;hpb=1096cdefb1c9a3f3c4ca6807e272da6c92e5ed9c diff --git a/sources/plugins/resize/plugin.js b/sources/plugins/resize/plugin.js index be9673d..123dd2d 100644 --- a/sources/plugins/resize/plugin.js +++ b/sources/plugins/resize/plugin.js @@ -1,5 +1,5 @@ /** - * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. + * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ @@ -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' );