Fixed: No longer showing connect lost messages when trying to reconnect

This commit is contained in:
Mark McDowall 2014-01-05 22:37:59 -08:00
parent fcd5619041
commit ed1334514f
1 changed files with 0 additions and 11 deletions

View File

@ -29,7 +29,6 @@ define(
var tryingToReconnect = false; var tryingToReconnect = false;
var messengerId = 'signalR'; var messengerId = 'signalR';
var reconnectTimeout;
this.signalRconnection = $.connection('/signalr'); this.signalRconnection = $.connection('/signalr');
@ -47,19 +46,9 @@ define(
} }
tryingToReconnect = true; tryingToReconnect = true;
reconnectTimeout = window.setTimeout(function () {
Messenger.show({
id : messengerId,
type : 'info',
hideAfter : 0,
message : 'Connection to backend lost, attempting to reconnect'
});
}, 10000);
}); });
this.signalRconnection.reconnected(function() { this.signalRconnection.reconnected(function() {
window.clearTimeout(reconnectTimeout);
tryingToReconnect = false; tryingToReconnect = false;
var currentVersion = StatusModel.get('version'); var currentVersion = StatusModel.get('version');