$script.js nested dependencies

212 Views Asked by At

Is there a way to make the following work with $script.js:

control.js

$script('accounts.js', function() {
    // fnA
});

accounts.js

$script('util.js', function() {
    // fnB
});

I would have hoped that fnB is executed before fnA, but it's not. Therefore, namespaces and objects created in fnB are not available to fnA, namely the accounts functionality.

util.js contains only a namespace function.

1

There are 1 best solutions below

2
On BEST ANSWER

You should do this:

control.js
$script('util.js', function() {
    // fnB
    $script('accounts.js', function() {
       // fnA
    });
});

And it wouldn't be necessary for accounts.js to load utils.js.

Hope this helps