Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#MizzouSEG

##Description

This project is exercise 1 for the software engineering course at Mizzou. The purpose is to use a Huffington Post API to gather polling information and visualize the information using D3.js

##Links

[jQuery] (https://jquery.com)
[D3.js] (http://d3js.org)
[Huffington Post API] (http://elections.huffingtonpost.com/pollster/api)
2 changes: 1 addition & 1 deletion app.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ body {
#graph .bar {
width: 0;
height: 35px;
background-color: coral;
background-color: dodgerblue;
margin: 5px;
float: left;
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<script>

var url = "http://elections.huffingtonpost.com/pollster/api/charts/2016-national-gop-primary";
var url = "http://elections.huffingtonpost.com/pollster/api/charts/2016-national-democratic-primary";

$.ajax(url, {
dataType: "jsonp",
Expand Down