Opened 13 years ago
Last modified 13 years ago
#8951 review Bug
Scriptloader may fail when loading sequences of already loaded files
Reported by: | Sa'ar Zac Elias | Owned by: | Sa'ar Zac Elias |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
The following code will fail (the file c.js
will not be loaded and the second callback will not be triggered):
CKEDITOR.scriptLoader.load( [ 'a.js', 'b.js' ], function() { alert( 'a' ); CKEDITOR.scriptLoader.load( [ 'a.js', 'b.js', 'c.js' ], function() { alert( 'b' ); }); } );
Attachments (1)
Change History (2)
Changed 13 years ago by
Attachment: | 8951.patch added |
---|
comment:1 Changed 13 years ago by
Owner: | set to Sa'ar Zac Elias |
---|---|
Status: | new → review |