diff options
author | Ben Burwell <ben@benburwell.com> | 2015-03-30 02:46:14 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-03-30 02:46:14 -0400 |
commit | 2b59a0f8355ae8b4bf71cf5c2a365de91f5ebe1b (patch) | |
tree | baaeeeccef58a402b328b1abbdd667dca7e6b5f7 /assets/scripts/d3 | |
parent | 475275e0bb1d7e494ff3579595bf0e8dcda8474a (diff) |
redesign
Diffstat (limited to 'assets/scripts/d3')
-rw-r--r-- | assets/scripts/d3/gender_terms_v1.js | 2 | ||||
-rw-r--r-- | assets/scripts/d3/party_affiliation_v0.js | 2 | ||||
-rw-r--r-- | assets/scripts/d3/religion_v0.js | 2 | ||||
-rw-r--r-- | assets/scripts/d3/religion_v1.js | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/assets/scripts/d3/gender_terms_v1.js b/assets/scripts/d3/gender_terms_v1.js index ba510e0..2446ee1 100644 --- a/assets/scripts/d3/gender_terms_v1.js +++ b/assets/scripts/d3/gender_terms_v1.js @@ -1,5 +1,5 @@ (function() { - var width = 960; + var width = 900; var height = 500; var color = d3.scale.category10(); diff --git a/assets/scripts/d3/party_affiliation_v0.js b/assets/scripts/d3/party_affiliation_v0.js index ed7b576..853fed5 100644 --- a/assets/scripts/d3/party_affiliation_v0.js +++ b/assets/scripts/d3/party_affiliation_v0.js @@ -1,6 +1,6 @@ (function() { - var width = 960; + var width = 900; var height = 700; var radius = Math.min(width, height) / 2; diff --git a/assets/scripts/d3/religion_v0.js b/assets/scripts/d3/religion_v0.js index 6391195..d7d2232 100644 --- a/assets/scripts/d3/religion_v0.js +++ b/assets/scripts/d3/religion_v0.js @@ -40,7 +40,7 @@ return religion_array; }; - var width = 960; + var width = 900; var barHeight = 25; var margin = 215; diff --git a/assets/scripts/d3/religion_v1.js b/assets/scripts/d3/religion_v1.js index 4b8f733..425b71f 100644 --- a/assets/scripts/d3/religion_v1.js +++ b/assets/scripts/d3/religion_v1.js @@ -27,7 +27,7 @@ return religion_array; }; - var width = 960; + var width = 900; var height = 400; var radius = Math.min(width, height) / 2; |