Merge branch 'master' of github.com:psychobunny/node-forum

v1.18.x
Julian Lam 12 years ago
commit 5671f80bbc

@ -42,6 +42,7 @@ var socket,
}); });
}, 1000); }, 1000);
reconnecting = false; reconnecting = false;
socket.emit('api:updateHeader', { fields: ['username', 'picture', 'userslug'] });
} }
}); });
@ -110,7 +111,7 @@ var socket,
function startTimeout(div, timeout) { function startTimeout(div, timeout) {
var timeoutId = setTimeout(function() { var timeoutId = setTimeout(function() {
$(div).fadeOut(1000, function() { $(div).fadeOut(1000, function() {
this.remove(); $(this).remove();
}); });
}, timeout); }, timeout);

Loading…
Cancel
Save