X-Git-Url: https://jasonwoof.com/gitweb/?p=ckeditor.git;a=blobdiff_plain;f=_source%2Fcore%2Fscriptloader.js;h=191f56daa368249225af165cb626e75f0776ed3e;hp=0ad7d86994cff8f1a4c71b6977d39e65fc7b73b1;hb=039a051ccf3901311661022a30afd60fc38130c9;hpb=c9fdde67e6384bd5a66adc2b3bba5c4ce9db56c7 diff --git a/_source/core/scriptloader.js b/_source/core/scriptloader.js index 0ad7d86..191f56d 100644 --- a/_source/core/scriptloader.js +++ b/_source/core/scriptloader.js @@ -15,8 +15,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.scriptLoader = (function() { - var uniqueScripts = {}; - var waitingList = {}; + var uniqueScripts = {}, + waitingList = {}; return /** @lends CKEDITOR.scriptLoader */ { /** @@ -35,6 +35,8 @@ CKEDITOR.scriptLoader = (function() * the callback call. Default to {@link CKEDITOR}. * @param {Boolean} [noCheck] Indicates that the script must be loaded * anyway, not checking if it has already loaded. + * @param {Boolean} [showBusy] Changes the cursor of the document while ++ * the script is loaded. * @example * CKEDITOR.scriptLoader.load( '/myscript.js' ); * @example