From cc95982fe89eec83671c4642e62c199241a1a27c Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Mon, 15 Aug 2016 16:27:13 -0400 Subject: [PATCH] including app.js with basic setup --- public/index.html | 1 + public/js/app.js | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 public/js/app.js diff --git a/public/index.html b/public/index.html index 81f105a..dd7be50 100644 --- a/public/index.html +++ b/public/index.html @@ -7,5 +7,6 @@

Run Tracker

+ diff --git a/public/js/app.js b/public/js/app.js new file mode 100644 index 0000000..0d11aad --- /dev/null +++ b/public/js/app.js @@ -0,0 +1,7 @@ +var WIDTH = 800; +var HEIGHT = 600; + +d3.select('svg').style({ + height: HEIGHT, + width: WIDTH +});