Fauxton: Fix global var in logs/resources
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/6fe7583a Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/6fe7583a Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/6fe7583a Branch: refs/heads/Query-UI-Cleanup Commit: 6fe7583a6677e7d4333d7854dd8d3f22e02f823a Parents: b2c7cc7 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 ---------------------------------------------------------------------- src/fauxton/app/addons/logs/resources.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/6fe7583a/src/fauxton/app/addons/logs/resources.js ---------------------------------------------------------------------- diff --git a/src/fauxton/app/addons/logs/resources.js b/src/fauxton/app/addons/logs/resources.js index 5cfa673..c285395 100644 --- a/src/fauxton/app/addons/logs/resources.js +++ b/src/fauxton/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; },
