$("#sidebar_content")
.on("click", ".search_more a", clickSearchMore)
+ .on("click", ".search_results_entry a.set_position", clickSearchResult)
.on("mouseover", "p.search_results_entry:has(a.set_position)", showSearchResult)
.on("mouseout", "p.search_results_entry:has(a.set_position)", hideSearchResult)
.on("mousedown", "p.search_results_entry:has(a.set_position)", function () {
var moved = false;
$(this).one("click", function (e) {
if (!moved && !$(e.target).is('a')) {
- clickSearchResult(this, e);
+ $(this).find("a.set_position").simulate("click", e);
}
}).one("mousemove", function () {
moved = true;
$(this).closest("li").removeClass("selected");
}
- function clickSearchResult(result, e) {
- var link = $(result).find("a.set_position"),
- data = link.data(),
+ function clickSearchResult(e) {
+ var data = $(this).data(),
center = L.latLng(data.lat, data.lon);
if (data.minLon && data.minLat && data.maxLon && data.maxLat) {
map.setView(center, data.zoom);
}
+ // Let clicks to object browser links propagate.
+ if (data.type && data.id) return;
+
e.preventDefault();
e.stopPropagation();
-
- // Let clicks to object browser links propagate.
- if (data.type && data.id) {
- link.simulate("click", e);
- }
}
var markers = L.layerGroup().addTo(map);