Namespace.js icon indicating copy to clipboard operation
Namespace.js copied to clipboard

Include multiple files asynchronously

Open stodge opened this issue 11 years ago • 0 comments

I'd like the ability to include an array of modules. These would be loaded asynchronously and Namespace would invoke my callback once they are all loaded.

Namespace.include(["file1", "file2", "file3"], function() {
    console.log("Done");
});

stodge avatar Dec 12 '13 16:12 stodge