Fauxton: Fix global var
Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/5b3238d1 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/5b3238d1 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/5b3238d1 Branch: refs/heads/import-master Commit: 5b3238d13e08a7828adf5800afb8991406350a5a Parents: 0ad9ed6 Author: Robert Kowalski <[email protected]> Authored: Tue Apr 1 21:14:34 2014 +0200 Committer: Robert Kowalski <[email protected]> Committed: Tue Apr 1 22:07:31 2014 +0200 ---------------------------------------------------------------------- app/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/5b3238d1/app/helpers.js ---------------------------------------------------------------------- diff --git a/app/helpers.js b/app/helpers.js index a58cc20..4e515ec 100644 --- a/app/helpers.js +++ b/app/helpers.js @@ -75,7 +75,7 @@ function(utils) { }; Helpers.formatDate = function(timestamp){ - format = d3.time.format("%b. %e at %H:%M%p"); + var format = d3.time.format("%b. %e at %H:%M%p"); return format(new Date(timestamp*1000)); };
