From 93fc05e98a63dd67916f5e9364d87f8f07aa6b2f Mon Sep 17 00:00:00 2001 From: Arvind Date: Wed, 16 Oct 2013 14:11:20 +0530 Subject: [PATCH] Hide summary till map comes --- mouchak/static/js/views.js | 1 + 1 file changed, 1 insertion(+) diff --git a/mouchak/static/js/views.js b/mouchak/static/js/views.js index 78b2ddf..0fc1c6e 100644 --- a/mouchak/static/js/views.js +++ b/mouchak/static/js/views.js @@ -120,6 +120,7 @@ var template = _.template($("#map-template").html()); $(el).append(template); $("#map").hide(); + $("#summaryData").hide(); var southWest = new L.LatLng(47.20, 4.04); //Logic to calculate the bounds for "world view". var northEast = new L.LatLng(55.10, 16.67); var restrictBounds = new L.LatLngBounds(southWest, northEast); -- 1.7.10.4