Code Monkey home page Code Monkey logo

Comments (5)

zackbloom avatar zackbloom commented on July 28, 2024

I'm a little confused, the purpose of the check near line 166 is to force older browsers which don't support XMLHttpRequest2 to use onreadystatechange: https://github.com/HubSpot/offline/blob/master/js/offline.js#L171

Meaning, it was checking specifically that it was undefined on IE9, and it was correctly avoiding a code path which wouldn't work. Before making your change, what was happening in IE9. Was it just not showing up?

The readyState is correctly 1 before sending the XHR (it's set by the browser, not jQuery). It will then later be reset to 0 if there is a network issue.

from offline.

bellb7 avatar bellb7 commented on July 28, 2024

I was seeing xhr.onprogress == "undefined" (non-null), and so it was entering the onreadystatechange path in IE9.

So instead of this:

if (xhr.onprogress === null) {

I changed to this:

if (xhr.onprogress === null || xhr.onprogress === undefined) {

And (strangely?) it works. I see what you're saying though - in IE9 those events (error/timeout) shouldn't even be available. Hm...I'm definitely running IE9.

When it was in the onreadystatechange block my readyState was always "1", and even after a failure it remained "1", so the disconnected functionality was never kicking in. This might be due to how I was testing though: I was just being lazy and stopping my local server before the request (causing it to fail). I suspect if I tested properly against a remote server and broke the connection I may see a different result..?

Thanks, and apologies for the confusion. :)

from offline.

zackbloom avatar zackbloom commented on July 28, 2024

IE9 does not support XMLHttpRequest2, but I believe it does support onload and onerror events on the XDomainRequest object, which is used for cross-origin requests. In any case though, the onreadystatechange block should work. readyState of 1 generally means that open was called, but send was not on the XMLHttpRequest object.

from offline.

bellb7 avatar bellb7 commented on July 28, 2024

Right. I'm going to dig a bit deeper and see if I can nail down what's going on here. I appreciate the quick replies!

from offline.

zackbloom avatar zackbloom commented on July 28, 2024

Please reopen if you still have this issue.

from offline.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.