From 4efab66bc67bb9e59de55fd801a0f46882585448 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Thu, 11 Jul 2013 11:53:08 -0700 Subject: [PATCH] Fix undefined=undefined in query strings --- app/assets/javascripts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 6ea276230..e615902d1 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -172,7 +172,7 @@ function updateLocation() { updatelinks(this.getCenter().wrap(), this.getZoom(), this.getLayersCode(), - this.getBounds().wrap(), {}); + this.getBounds().wrap()); var expiry = new Date(); expiry.setYear(expiry.getFullYear() + 10); -- 2.43.2