Skip to content
Snippets Groups Projects
Commit d31a50dd authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

disable 'online' check. too many false positives to be useful. closes #719...

disable 'online' check.  too many false positives to be useful.  closes #719 (@shane-tomlinson - I went for a minimal fix given we're branching the beta train right after this commit.  feel free to clean up)
parent ebc4c2a1
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ BrowserID.Modules.Dialog = (function() {
sc;
function checkOnline() {
if ('onLine' in navigator && !navigator.onLine) {
if (false && 'onLine' in navigator && !navigator.onLine) {
this.publish("offline");
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment