Hi,
I have an application written in pure html & javascript, now I want to convert it to OX AppSuite's application. I then write register.js file like below:
register.js
myclass in turn, require lots of external scripts & most of them are utility module which are included into dom tree by <script> tag in the old fashion style.
The question is: How can I include those dependencies?
Thanks
I have an application written in pure html & javascript, now I want to convert it to OX AppSuite's application. I then write register.js file like below:
register.js
PHP Code:
define('my.namespce/myapp/register', ['my.namespace/myapp/myclass'], function (myclass) {
...
});
The question is: How can I include those dependencies?
Thanks
Comment