firefox 'offline mode' not an option?
Web Development
Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient
I’ve never heard of that. I’ll look into it and report back.
Looks like “offline mode” allows a page to keep working after its already been loaded, and then the computer is made offline. If this is correct, it won’t work for my situation.
I’m hoping to use this on a small machine that’s always offline, so it won’t have the chance to load the webpage from an online server.
Looks like “offline mode” allows a page to keep working after its already been loaded, and then the computer is made offline. If this is correct, it won’t work for my situation.
I’m hoping to use this on a small machine that’s always offline, so it won’t have the chance to load the webpage from an online server.
Update: I’ve been banging my head against this for another day and have made a bit of progress. I think part of my original problem has to do with CORS issues. I’ve gotten around this by running a local server and navigating to the local html file via http (http://local host:8080/tennis.html) instead of file (file:///drive/path/tennis.html).
After this, I was running into an error with https. I believed something in the js was forcing redirection to https protocol. I “fixed” this by changing the value of _0x15ea[1] from “https:” to “http:” in the tennis.js file.
Now, I am able to get the locally saved page to load in a browser, but none of the actions that normally update the score on the scoreboard are working. For example, when loaded from the original website (scorching.com), clicking on the game score (white boxes on right) will increase that player’s score by 1. Likewise, the “z” and “x” keyboard keys will increase the player 1 and 2 scores, respectively. (In case anyone isn’t familiar with tennis scoring, the game score numbers advance through 15, 30, 40…, so don’t be surprised that they aren’t going 1, 2, 3…
The other things on the page all seem to be working. Just the scoring isn’t working,~~or the inputs to activate scoring changes aren’t being recognized.~~ (In the browser’s console I can see “scores 1” or “scores 2” being logged, which is the first instruction in the “scores” function, so I know the inputs are being recognized.) Appreciate any thoughts that might help me.