X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/35fbcf28154b6f15f697018016fbabc952e018a5..6b0451124c0fe1cb7275ce973a069a125386558e:/app/assets/javascripts/index.js diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 01682d5f8..684685d51 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -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); } }] });