Commit acfabe9c authored by Leo Iannacone's avatar Leo Iannacone

populate page on socket connect - this should help on handing disconnection and reconnection

parent 328784ff
...@@ -657,6 +657,12 @@ function Page_Distrubion(socket) { ...@@ -657,6 +657,12 @@ function Page_Distrubion(socket) {
this.start = function () { this.start = function () {
socket.on('connect', function () {
if (!__check_hash_makes_sense())
return;
populate();
});
socket.on(config.events.error, function (socket_error) { socket.on(config.events.error, function (socket_error) {
debug_socket('received', config.events.error, socket_error); debug_socket('received', config.events.error, socket_error);
error.set(socket_error); error.set(socket_error);
...@@ -715,9 +721,6 @@ function Page_Distrubion(socket) { ...@@ -715,9 +721,6 @@ function Page_Distrubion(socket) {
debug(1, 'changing view', 'old:', old_view, 'new:', view); debug(1, 'changing view', 'old:', old_view, 'new:', view);
}); });
if (!__check_hash_makes_sense())
return;
populate();
// Init sticky-package back_on_top on click // Init sticky-package back_on_top on click
$('#sticky-package').on('click', function () { $('#sticky-package').on('click', function () {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment