Display a message when provisioning socket fails

Fixes #464

// FREEBIE
This commit is contained in:
lilia 2016-02-09 16:21:42 -08:00
parent 7e82d1295c
commit 4198987723
3 changed files with 11 additions and 3 deletions

View file

@ -44,8 +44,8 @@
this.$('#qr').text(i18n("installConnecting"));
},
setProvisioningUrl: function(url) {
this.$('#qr').html('');
new QRCode(this.$('#qr')[0]).makeCode(url);
this.$('#qr').html('');
new QRCode(this.$('#qr')[0]).makeCode(url);
},
confirmNumber: function(number) {
var parsed = libphonenumber.parse(number);
@ -88,6 +88,9 @@
},
showTooManyDevices: function() {
this.selectStep('TooManyDevices');
},
showConnectionError: function() {
this.$('#qr').text(i18n("installConnectionFailed"));
}
});
})();