]> git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blobdiff - sources/core/_bootstrap.js
Update to 4.7.3
[perso/Immae/Projets/packagist/ludivine-ckeditor-component.git] / sources / core / _bootstrap.js
index 0163912e1fd71b8a9fbda2b7b464b05d77ced0f4..cc7fb38b1c71f51ccf2b408614e4eb32881ea800 100644 (file)
@@ -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 {
                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;