diff options
author | Robert Kowalski <rok@kowalski.gd> | 2014-04-05 17:52:38 +0200 |
---|---|---|
committer | Robert Kowalski <rok@kowalski.gd> | 2014-04-05 18:02:11 +0200 |
commit | 9f6a9190f04a23690277888b5ae2413f7cef7a96 (patch) | |
tree | 02f8586e439a21ff44ee94b024ad2c90e22fee3d | |
parent | d81619033206f09a774072dc2f84f7f275b12496 (diff) | |
download | couchdb-9f6a9190f04a23690277888b5ae2413f7cef7a96.tar.gz |
Fauxton: fix undefined d3 dependency
Fixes the ActiveTasks View
-rw-r--r-- | src/fauxton/app/helpers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/helpers.js b/src/fauxton/app/helpers.js index 4e515ec3a..208b0d9d0 100644 --- a/src/fauxton/app/helpers.js +++ b/src/fauxton/app/helpers.js @@ -23,7 +23,7 @@ define([ "d3" ], -function(utils) { +function(utils, d3) { var Helpers = {}; |