@ -324,5 +324,16 @@
}
};
Whisper.events.on('unauthorized', function() {
if (owsDesktopApp.inboxView) {
owsDesktopApp.inboxView.networkStatusView.update();
});
Whisper.events.on('reconnectTimer', function() {
owsDesktopApp.inboxView.networkStatusView.setSocketReconnectInterval(60000);
})();
@ -15,7 +15,9 @@
installView.hideDots();
installView.$el.show();
Whisper.events.on('contactsync:begin', installView.showSync, installView);
Whisper.events.on('contactsync', function() {
installView.close();
bg.openInbox();
window.close();
@ -49,8 +49,6 @@
this.$('#step1').show();
this.connect();
this.on('disconnected', this.reconnect);
this.listenTo(Whisper.events, 'contactsync:begin', this.showSync);
this.listenTo(Whisper.events, 'contactsync', this.close);
},
connect: function() {
this.clearQR();
@ -19,8 +19,6 @@
window.addEventListener('online', this.update.bind(this));
window.addEventListener('offline', this.update.bind(this));
Whisper.events.on('unauthorized', this.update, this);
Whisper.events.on('reconnectTimer', this.onReconnectTimer, this);
this.model = new Backbone.Model();
this.listenTo(this.model, 'change', this.onChange);
@ -45,7 +45,6 @@ window.assert = chai.assert;
window.Whisper = window.Whisper || {};
window.Whisper.Database = window.Whisper.Database || {};
Whisper.Database.id = 'test';
Whisper.events = _.clone(Backbone.Events);
/*
* global helpers for tests
@ -12257,7 +12257,6 @@ window.assert = chai.assert;