Commit 07381392bf835d760f51a556ae3689752fd10827

Authored by Francisco Marcelo de Araújo Lima Júnior
1 parent 87ec73ab
Exists in master

fix

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
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() {
... ...