Skip to content
Snippets Groups Projects
Commit 590ddb36 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Adding an offline error message

parent dc9fedfa
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,8 @@
var bid = BrowserID,
user = bid.User,
errors = bid.Errors;
errors = bid.Errors,
offline = false;
PageController.extend("Dialog", {}, {
init: function(el) {
......@@ -59,17 +60,23 @@
},
getVerifiedEmail: function(origin_url, onsuccess, onerror) {
this.onsuccess = onsuccess;
this.onerror = onerror;
var self=this;
self.onsuccess = onsuccess;
self.onerror = onerror;
if('onLine' in navigator && !navigator.onLine) {
self.doOffline();
return;
}
user.setOrigin(origin_url);
// get the cleaned origin.
$("#sitename").text(user.getHostname());
this.doCheckAuth();
self.doCheckAuth();
var self=this;
$(window).bind("unload", function() {
self.doCancel();
});
......@@ -82,6 +89,14 @@
el = this.element;
hub.subscribe("offline", function(msg, info) {
self.doOffline();
});
hub.subscribe("xhrError", function(msg, info) {
self.doXHRError(info);
});
hub.subscribe("user_staged", function(msg, info) {
self.doConfirmUser(info.email);
});
......@@ -140,6 +155,15 @@
},
doOffline: function() {
this.renderError(errors.offline);
offline = true;
},
doXHRError: function(info) {
if (!offline) this.renderError(errors.offline);
},
doConfirmUser: function(email) {
this.confirmEmail = email;
......
......@@ -78,6 +78,12 @@ BrowserID.Errors = (function(){
message: "An error was encountered while signing you out. Yucky!"
},
offline: {
type: "networkError",
title: "You are offline!",
message: "Unfortunately, BrowserID cannot communicate while offline!"
},
registration: {
type: "serverError",
title: "Registration Failed",
......
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