Fauxton: Fix global var in logs/resources
Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/018faedc Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/018faedc Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/018faedc Branch: refs/heads/import-master Commit: 018faedc12844cc45624b14f8d5e9a306fe4024d Parents: d981f9a Author: Robert Kowalski <[email protected]> Authored: Mon Apr 14 22:01:40 2014 +0200 Committer: Robert Kowalski <[email protected]> Committed: Mon Apr 14 22:14:47 2014 +0200 ---------------------------------------------------------------------- app/addons/logs/resources.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/018faedc/app/addons/logs/resources.js ---------------------------------------------------------------------- diff --git a/app/addons/logs/resources.js b/app/addons/logs/resources.js index 5cfa673..c285395 100644 --- a/app/addons/logs/resources.js +++ b/app/addons/logs/resources.js @@ -54,7 +54,7 @@ function (app, FauxtonAPI, Backbone, d3) { documentation: "log", url: function () { - query = "?" + $.param(this.params); + var query = "?" + $.param(this.params); return app.host + '/_log' + query; },
