Inactive User
12 years agojson2.js
I noticed Lithium brings in json2.js. However, I need it to be loaded higher on the page or link to it earlier. Is there a good way to do this? I noticed the full path URL to the file includes a long string that looks temporary and random (https://lithiumstage.usaa.com/t5/scripts/829F1A6A96AAB376B634183C87A364EA/json2.js), otherwise I'd just use that.
Thanks
Hey jlutterlog,
We have a Loader util which allows you to add functions to be run as the page finishes loading:
LITHIUM.Loader(function() { //do something });
David
- Inactive User12 years ago
Nevermind. Needed to be LITHIUM.Loader.onLoad(function(){ })