I was using the following code to download the JS files. This script is in a js file(lets say file1.js) which is in a static resource and is included in skuid pages.
function loadJS(file) {
var jsElm = document.createElement(“script”);
jsElm.type = “application/javascript”;
jsElm.src = file;
document.body.appendChild(jsElm);
}
loadJS(“/soap/ajax/38.0/connection.js”); // file2
loadJS(“/soap/ajax/38.0/apex.js”); // file 3
Now my expectation is that after file1 is executed, file2 and file3 will download and then on page load functions will be called. This used to work fine until 8.15.15
After the upgrade, its failing. I suspect the files are getting downloaded asynchronously.