Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
    }

};
share|improve this question
The repo for the JS SDK is open source - you should submit this as a pull request! – nickf Jan 28 at 1:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.