xxxxxxxxxx
<html>
<head>
<title>Simple Template Example</title>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/d3@2.10.3/d3.v2.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/d3@12.10.3/d3.csv.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/d3@12.10.3/d3.time.js"></script>
<script type="text/javascript" src="bar.js"></script>
<script type="text/javascript" src="csv.js"></script>
</head>
<body>
<button id="prices" value="Prices">Prices</button><button id="trans">Transmission Limits</button><br>
<svg id="svg"></svg>
<script type="text/javascript">
d3.select("#prices").on("click", function(d,i)
{
prices_csv();
})
d3.select("#trans").on("click", function(d,i)
{
trans_csv();
})
init();
</script>
</body>
</html>
Modified http://mbostock.github.com/d3/d3.js to a secure url
Modified http://mbostock.github.com/d3/d3.csv.js to a secure url
Modified http://mbostock.github.com/d3/d3.time.js to a secure url
https://mbostock.github.com/d3/d3.js
https://mbostock.github.com/d3/d3.csv.js
https://mbostock.github.com/d3/d3.time.js