-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
In requirejs the plugin loader interface is:
define({
load: function (name, req, onload, config) {
The dojo loader one is:
define({
load: function (name, require, loaded) {
I need access to the config object in my plugin. The config object is the config passed to require during bootstrapping the loader.
Can you add something to the dojo loader plugin interface that will give me access to a config object I can set when bootstrapping the loader?