timeline-viz: note the older d3 version we need

I should rewrite this to be compatible with the latest d3.js (v4), but for
now just install d3@3.5.17 instead.
This commit is contained in:
Brian Warner 2017-05-15 02:10:29 -07:00
parent d19b5850cc
commit 6604eae7a0
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# To use the web() option, you should do:
# * cd misc
# * npm install d3 zepto
# * npm install d3@3.5.17 d3-tip@0.6.7 zepto
from __future__ import print_function
import os, sys, time, json, random

View File

@ -4,7 +4,7 @@
<title>Timeline Visualizer</title>
<script src="lib/d3/d3.min.js"></script>
<script src="lib/d3-tip/index.js"></script>
<script src="lib/zepto/zepto.min.js"></script>
<script src="lib/zepto/dist/zepto.min.js"></script>
<link href="timeline.css" rel="stylesheet" type="text/css" />
</head>