]> git.openstreetmap.org Git - rails.git/commitdiff
Drop click handler for changeset entries in the history sidebar
authorTom Hughes <tom@compton.nu>
Mon, 2 Dec 2013 10:17:53 +0000 (10:17 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 2 Dec 2013 10:17:53 +0000 (10:17 +0000)
The default click handler in index.js handles them fine, and as this
one was not calling preventDefault both were actually firing in some
browsers, causing the changeset to be loaded twice and two history
entries to be created.

app/assets/javascripts/index/history.js

index 639705f91c33ca364347795b0b03b27912e8d139..cb2ef6d0c34ae2946db88782cb8312970f4dfcc2 100644 (file)
@@ -8,9 +8,6 @@ OSM.History = function(map) {
     })
     .on("mouseout", "[data-changeset]", function () {
       unHighlightChangeset($(this).data("changeset").id);
-    })
-    .on("click", "[data-changeset]", function () {
-      clickChangeset($(this).data("changeset").id);
     });
 
   var group = L.featureGroup()