fixed typos
authorJordan Augé <jordan.auge@lip6.fr>
Mon, 7 Jul 2014 09:00:00 +0000 (11:00 +0200)
committerJordan Augé <jordan.auge@lip6.fr>
Mon, 7 Jul 2014 09:00:00 +0000 (11:00 +0200)
plugins/googlemap/static/js/googlemap.js
plugins/querytable/static/js/querytable.js
plugins/queryupdater/static/js/queryupdater.js

index 0ecf113..1eec1d9 100644 (file)
@@ -125,7 +125,7 @@ GOOGLEMAP_BGCOLOR_REMOVED = 2;
                 title: object,
                 /* gmap can deal with a DOM element but not a jquery object */
                 content: dom.get(0),
-                keys = Array(),
+                keys: Array(),
             }); 
             //extend the bounds to include each marker's position
             this.bounds.extend(marker.position);
@@ -268,9 +268,9 @@ GOOGLEMAP_BGCOLOR_REMOVED = 2;
                 visible = false;
                 $.each(marker.keys, function(j, key) {
                     visible |= manifold.query_store.get_record_state(self.options.query_uuid, key, STATE_VISIBLE);
-                }
+                });
                 marker.setVisible(visible);
-            }
+            });
         },
 
         redraw_map: function()
index 479819f..623a1e1 100644 (file)
@@ -403,7 +403,6 @@ QUERYTABLE_BGCOLOR_REMOVED = 2;
         },
 
         /*************************** QUERY HANDLER ****************************/
-                                    HANDLERS
 
         on_filter_added: function(filter)
         {
index 8e5793a..0cab4e0 100644 (file)
         {
             // Loop over records and display pending ones
             manifold.query_store.iter_records(this.options.query_uuid, function (record_key, record) {
-            }
+            });
         },
         
         set_button_state: function(name, state)