Commit ff54cb4b authored by Dave Hoover's avatar Dave Hoover

Fixed formatting

parent 36d0e59c
...@@ -20,7 +20,7 @@ function QueryParams (_window) { ...@@ -20,7 +20,7 @@ function QueryParams (_window) {
} }
} }
return params; return params;
} };
this.update = function (params) { this.update = function (params) {
var currentParams = this.get(); var currentParams = this.get();
...@@ -34,8 +34,7 @@ function QueryParams (_window) { ...@@ -34,8 +34,7 @@ function QueryParams (_window) {
queryString += updatedKeys[y] + '=' + currentParams[updatedKeys[y]] + '&'; queryString += updatedKeys[y] + '=' + currentParams[updatedKeys[y]] + '&';
} }
_window.location.hash = queryString.slice(0, -1); _window.location.hash = queryString.slice(0, -1);
} };
} }
module.exports = QueryParams; module.exports = QueryParams;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment