Commit 3e16165d250b15798dcd5aa8d13bf46b27a05bd2

Authored by Francisco Marcelo de Araújo Lima Júnior
1 parent 86a25e60

fix

plugins/community_hub/public/javascripts/community_hub.js
... ... @@ -56,6 +56,7 @@ function new_message(button) {
56 56 if (data.ok) {
57 57 jQuery(".hub .form #message_body").val('');
58 58 jQuery("#loading-message").addClass("loading-signal-done");
  59 + update_live_stream();
59 60 setTimeout(clearLoadingMessageSignal, 3000);
60 61 }
61 62 else {
... ... @@ -239,7 +240,7 @@ function update_live_stream() {
239 240  
240 241 }
241 242  
242   - //setTimeout(update_live_stream, 5000);
  243 + setTimeout(update_live_stream, 5000);
243 244 }
244 245  
245 246 function hub_left_tab_click() {
... ...