added 500ms delay to disconnect message

This commit is contained in:
Baris Usakli
2013-05-24 11:39:30 -04:00
parent 06aa2337d1
commit 2d90635dc8

View File

@@ -50,6 +50,7 @@ var socket,
}); });
socket.on('disconnect', function(data){ socket.on('disconnect', function(data){
setTimeout(function() {
app.alert({ app.alert({
alert_id: 'connection_alert', alert_id: 'connection_alert',
title: 'Disconnect', title: 'Disconnect',
@@ -57,6 +58,7 @@ var socket,
type: 'error', type: 'error',
timeout: 5000 timeout: 5000
}); });
}, 500);
}); });
socket.on('reconnecting', function(data) { socket.on('reconnecting', function(data) {