Spent some time on the unminified sdk, and found out the readyState === 'complete', for IE678, is almost never fired, so I added a readyState === 'loaded' to the test. Now it works all the time...
Any reason you didn't do it ? afraid I could have other issues.
In this part of the code :
return element.onreadystatechange = function() {
if (this.readyState === "complete" || this.readyState ==="loaded") {
return func();
}
};
