X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fpiedsjaloux-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2F_bootstrap.js;fp=sources%2Fcore%2F_bootstrap.js;h=cc7fb38b1c71f51ccf2b408614e4eb32881ea800;hp=9fcbe25de0c8312c5844721570f48dfa793b54a4;hb=317f8f8f0651488f226b5280a8f036c7c135c639;hpb=1096cdefb1c9a3f3c4ca6807e272da6c92e5ed9c diff --git a/sources/core/_bootstrap.js b/sources/core/_bootstrap.js index 9fcbe25..cc7fb38 100644 --- a/sources/core/_bootstrap.js +++ b/sources/core/_bootstrap.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 */ @@ -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;