Fixes #464 // FREEBIE
@ -154,6 +154,10 @@
"message": "Connecting...",
"description": "Displayed when waiting for the QR Code"
},
"installConnectionFailed": {
"message": "Failed to connect to server.",
"description": "Displayed when we can't connect to the server."
"installGeneratingKeys": {
"message": "Generating Keys"
@ -44,7 +44,8 @@
view.showSync();
}).catch(function(e) {
if (e.message === 'websocket closed') {
init();
view.showConnectionError();
setTimeout(init, 10000);
} else if (e.name === 'HTTPError' && e.code == 411) {
view.showTooManyDevices();
}
@ -88,6 +88,9 @@
showTooManyDevices: function() {
this.selectStep('TooManyDevices');
showConnectionError: function() {
this.$('#qr').text(i18n("installConnectionFailed"));
});
})();