]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Fix missing semicolon warnings
[rails.git] / app / assets / javascripts / index.js
index 01682d5f8d60209417e9de9b3669a81a23fc6a92..684685d51d9680d30d5dc93c132230cc81e0f8e0 100644 (file)
@@ -85,22 +85,22 @@ $(document).ready(function () {
     contextmenuWidth: 140,
     contextmenuItems: [{
         text: 'Directions from here',
-        callback: function(e){ context_directionsfrom(e, map) }
+        callback: function(e){ context_directionsfrom(e, map); }
     }, {
         text: 'Directions to here',
-        callback: function(e){ context_directionsto(e, map) }
+        callback: function(e){ context_directionsto(e, map); }
     }, '-', {
         text: 'Add a note here',
-        callback: function(e){ context_addnote(e, map) }
+        callback: function(e){ context_addnote(e, map); }
     }, {
         text: 'Show address',
-        callback: function(e){ context_describe(e, map) }
+        callback: function(e){ context_describe(e, map); }
     }, {
         text: 'Query features',
-        callback: function(e){ context_queryhere(e, map) }
+        callback: function(e){ context_queryhere(e, map); }
     }, {
         text: 'Centre map here',
-        callback: function(e){ context_centrehere(e, map) }
+        callback: function(e){ context_centrehere(e, map); }
     }]
   });