X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2Fcreators%2Fthemedui.js;h=4e7a93e350add63d493bed7d34084143064ce611;hp=04927d060bfc5ca819386ff5133ca0812f890024;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/core/creators/themedui.js b/sources/core/creators/themedui.js index 04927d0..4e7a93e 100644 --- a/sources/core/creators/themedui.js +++ b/sources/core/creators/themedui.js @@ -280,10 +280,10 @@ CKEDITOR.replaceClass = 'ckeditor'; outer = container; } - // Set as border box width. (#5353) + // Set as border box width. (http://dev.ckeditor.com/ticket/5353) outer.setSize( 'width', width, true ); - // WebKit needs to refresh the iframe size to avoid rendering issues. (1/2) (#8348) + // WebKit needs to refresh the iframe size to avoid rendering issues. (1/2) (http://dev.ckeditor.com/ticket/8348) contentsFrame && ( contentsFrame.style.width = '1%' ); // Get the height delta between the outer table and the content area. @@ -295,7 +295,7 @@ CKEDITOR.replaceClass = 'ckeditor'; contents.setStyle( 'height', resultContentsHeight + 'px' ); - // WebKit needs to refresh the iframe size to avoid rendering issues. (2/2) (#8348) + // WebKit needs to refresh the iframe size to avoid rendering issues. (2/2) (http://dev.ckeditor.com/ticket/8348) contentsFrame && ( contentsFrame.style.width = '100%' ); // Emit a resize event. @@ -337,7 +337,7 @@ CKEDITOR.replaceClass = 'ckeditor'; // replacement will be done later in the editor creation lifecycle. element.setStyle( 'visibility', 'hidden' ); - // #8031 Remember if textarea was required and remove the attribute. + // http://dev.ckeditor.com/ticket/8031 Remember if textarea was required and remove the attribute. editor._.required = element.hasAttribute( 'required' ); element.removeAttribute( 'required' ); } @@ -422,7 +422,7 @@ CKEDITOR.replaceClass = 'ckeditor'; topHtml: topHtml ? '' + topHtml + '' : '', contentId: editor.ui.spaceId( 'contents' ), bottomHtml: bottomHtml ? '' + bottomHtml + '' : '', - outerEl: CKEDITOR.env.ie ? 'span' : 'div' // #9571 + outerEl: CKEDITOR.env.ie ? 'span' : 'div' // http://dev.ckeditor.com/ticket/9571 } ) ); if ( elementMode == CKEDITOR.ELEMENT_MODE_REPLACE ) { @@ -451,7 +451,7 @@ CKEDITOR.replaceClass = 'ckeditor'; // Disable browser context menu for editor's chrome. container.disableContextMenu(); - // Redirect the focus into editor for webkit. (#5713) + // Redirect the focus into editor for webkit. (http://dev.ckeditor.com/ticket/5713) CKEDITOR.env.webkit && container.on( 'focus', function() { editor.focus(); } );