X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2Fpackagist%2Fludivine-ckeditor-component.git;a=blobdiff_plain;f=sources%2Fcore%2Fscriptloader.js;fp=sources%2Fcore%2Fscriptloader.js;h=356996fb55829950d2be90a51568dacf827aad02;hp=a2b9ccafbd6fce5c7bf65e1676e865b2853ff0f1;hb=1794320dcfdfcd19572fb1676294f9853a6bbc20;hpb=7183f6a6a21ad9124e70c997e0168459f377a9f2 diff --git a/sources/core/scriptloader.js b/sources/core/scriptloader.js index a2b9cca..356996f 100644 --- a/sources/core/scriptloader.js +++ b/sources/core/scriptloader.js @@ -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 );