I am trying to understand this piece of code
require(['mifosXComponents'], function (componentsInit) {
componentsInit().then(function(){
require(['test/testInitializer'], function (testMode) {
if (!testMode) {
angular.bootstrap(document, ['MifosX_Application']);
}
});
});
});
The code is at mifosX client code. I believe this is the entry point of the mifosX web client software. I am really confused by the require
syntax here. All the online sample code I have seen is like require(["a", "b"], function (a, b){});
. In the other words, the parameter list inside the function()
are all listed inside the dependence []
right before it. However the code I pasted above has componentsInit
inside the function()
. And I could not find any place in the source code tree that componentsInit
gets defined.....
What I am trying here is to understand the code logic flow of mifosX. I am new to Javascript and RequireJS. Please help me understand this if you know what's going on here. Thanks in advance!