fixes for reconnect feature

Reinitalise models, and more apply state
fix-mobilekeyboard
Tor Hveem 10 years ago
parent afdcaadb72
commit cf27b11df3
  1. 5
      js/connection.js
  2. 2
      js/websockets.js

@ -216,6 +216,11 @@ weechat.factory('connection',
return;
}
// reinitialise everything, clear all buffers
// TODO: this can be further extended in the future by looking
// at the last line in ever buffer and request more buffers from
// WeeChat based on that
models.reinitialize();
$rootScope.reconnecting = true;
// Have to do this to get the reconnect banner to show
$rootScope.$apply();

@ -109,6 +109,8 @@ function($rootScope, $q) {
// otherwise emit it
$rootScope.$emit('onMessage', message);
}
// Make sure all UI is updated with new data
$rootScope.$apply();
};

Loading…
Cancel
Save