debisoft commited on
Commit
9007b86
·
1 Parent(s): 4d27d10
Files changed (1) hide show
  1. main.py +5 -4
main.py CHANGED
@@ -26,13 +26,14 @@ function load()
26
  attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
27
  }).addTo(map);
28
  //alert('loading...');
 
 
 
 
 
29
  }
30
  setTimeout(load, 1000);
31
 
32
- $("#chat_form :input[name='messages']").change(function(){
33
- alert("The text has been changed.");
34
- });
35
-
36
  """
37
 
38
  # @rt('/')
 
26
  attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
27
  }).addTo(map);
28
  //alert('loading...');
29
+
30
+ messages_input = $("#chat_form :input[name='messages']");
31
+ messages_input.change(function(){
32
+ alert("The text has been changed.");
33
+ });
34
  }
35
  setTimeout(load, 1000);
36
 
 
 
 
 
37
  """
38
 
39
  # @rt('/')