]> git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blobdiff - sources/core/scriptloader.js
Update to 4.7.3
[perso/Immae/Projets/packagist/ludivine-ckeditor-component.git] / sources / core / scriptloader.js
index a2b9ccafbd6fce5c7bf65e1676e865b2853ff0f1..356996fb55829950d2be90a51568dacf827aad02 100644 (file)
@@ -119,7 +119,7 @@ CKEDITOR.scriptLoader = ( function() {
                                        } );
 
                                        if ( callback ) {
-                                               // The onload or onerror event does not fire in IE8 and IE9 Quirks Mode (#14849).
+                                               // The onload or onerror event does not fire in IE8 and IE9 Quirks Mode (http://dev.ckeditor.com/ticket/14849).
                                                if ( CKEDITOR.env.ie && ( CKEDITOR.env.version <= 8 || CKEDITOR.env.ie9Compat ) ) {
                                                        script.$.onreadystatechange = function() {
                                                                if ( script.$.readyState == 'loaded' || script.$.readyState == 'complete' ) {
@@ -130,7 +130,7 @@ CKEDITOR.scriptLoader = ( function() {
                                                } else {
                                                        script.$.onload = function() {
                                                                // Some browsers, such as Safari, may call the onLoad function
-                                                               // immediately. Which will break the loading sequence. (#3661)
+                                                               // immediately. Which will break the loading sequence. (http://dev.ckeditor.com/ticket/3661)
                                                                setTimeout( function() {
                                                                        onLoad( url, true );
                                                                }, 0 );