X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/bc1b4d53e39eb7571fcda14287d573855cb1682c..7ec003dd01ff25765b46788aa0ec90cedd94a2de:/app/assets/javascripts/index.js diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index b41bbb0f4..c90d96c39 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -1,6 +1,8 @@ +//= require_self //= require index/browse //= require index/export //= require index/key +//= require index/notes $(document).ready(function () { var permalinks = $("#permalink").html(); @@ -115,10 +117,10 @@ $(document).ready(function () { $("#sidebar_title").html(I18n.t('site.sidebar.search_results')); $("#sidebar_content").load($(this).attr("action"), { query: $("#query").val(), - minlon: bounds.getSouthWest().lng, - minlat: bounds.getSouthWest().lat, - maxlon: bounds.getNorthEast().lng, - maxlat: bounds.getNorthEast().lat + minlon: bounds.getWestLng(), + minlat: bounds.getSouthLat(), + maxlon: bounds.getEastLng(), + maxlat: bounds.getNorthLat() }, openSidebar); return false;