Requiring External JavaScript File
After reading all the relevant answers in SO and posts in the Appcelerator forums I still can't get this to work: I have an application developed in Appcelerator, and I want to loa
Solution 1:
Make a lib folder inside assets folder and paste the js file there and you would be able to require file just like you do in classic :)
Thanks
Solution 2:
just use var uie = require('IndicatorWindow');
Also make sure it uses exports inside the JS
Post a Comment for "Requiring External JavaScript File"