X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2F_bootstrap.js;fp=sources%2Fcore%2F_bootstrap.js;h=cc7fb38b1c71f51ccf2b408614e4eb32881ea800;hp=0163912e1fd71b8a9fbda2b7b464b05d77ced0f4;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/core/_bootstrap.js b/sources/core/_bootstrap.js index 0163912..cc7fb38 100644 --- a/sources/core/_bootstrap.js +++ b/sources/core/_bootstrap.js @@ -8,7 +8,7 @@ */ ( function() { - // Disable HC detection in WebKit. (#5429) + // Disable HC detection in WebKit. (http://dev.ckeditor.com/ticket/5429) if ( CKEDITOR.env.webkit ) CKEDITOR.env.hc = false; else { @@ -19,13 +19,13 @@ hcDetect.appendTo( CKEDITOR.document.getHead() ); // Update CKEDITOR.env. - // Catch exception needed sometimes for FF. (#4230) + // Catch exception needed sometimes for FF. (http://dev.ckeditor.com/ticket/4230) try { var top = hcDetect.getComputedStyle( 'border-top-color' ), right = hcDetect.getComputedStyle( 'border-right-color' ); // We need to check if getComputedStyle returned any value, because on FF - // it returnes empty string if CKEditor is loaded in hidden iframe. (#11121) + // it returnes empty string if CKEditor is loaded in hidden iframe. (http://dev.ckeditor.com/ticket/11121) CKEDITOR.env.hc = !!( top && top == right ); } catch ( e ) { CKEDITOR.env.hc = false;