Namespace CKEDITOR.loader
Defined in: core/loader.js.
Field Attributes | Field Name and Description |
---|---|
<static> |
CKEDITOR.loader.loadedScripts
The list of loaded scripts in their loading order.
|
<inner> |
Method Attributes | Method Name and Description |
---|---|
<static> |
CKEDITOR.loader.load(scriptName, defer)
Loads a specific script, including its dependencies.
|
<static> |
CKEDITOR.loader.loadPending()
|
Field Detail
<static>
{Array}
CKEDITOR.loader.loadedScripts
Since:
3.0
The list of loaded scripts in their loading order.
// Alert the loaded script names. alert( CKEDITOR.loader.loadedScripts );
<inner>
{Undefined}
basePath
Since:
3.0
NO EXAMPLE AVAILABLE
Method Detail
<static>
{Undefined}
CKEDITOR.loader.load(scriptName, defer)
Since:
3.0
Loads a specific script, including its dependencies. This is not a
synchronous loading, which means that the code to be loaded will
not necessarily be available after this call.
CKEDITOR.loader.load( 'core/dom/element' );
- Parameters:
- {Undefined} scriptName
- {Undefined} defer
<static>
{Undefined}
CKEDITOR.loader.loadPending()
Since:
3.0
NO EXAMPLE AVAILABLE