2024-01-13 23:13:11 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<!-- Load d3.js -->
|
|
|
|
<script src="https://d3js.org/d3.v6.js"></script>
|
|
|
|
|
2024-01-14 01:01:42 +01:00
|
|
|
<!-- Create a div where the graphs will take place -->
|
|
|
|
<div id="graphs"></div>
|
2024-01-13 23:13:11 +01:00
|
|
|
|
2024-01-29 23:35:20 +01:00
|
|
|
<!-- <script src="http://127.0.0.1/app.js"></script> -->
|
|
|
|
<script>
|
|
|
|
let currenturl = (window.location);
|
|
|
|
var s = document.createElement( 'script' );
|
|
|
|
s.setAttribute( 'src', `${currenturl}/app.js` );
|
|
|
|
document.body.appendChild( s );
|
|
|
|
</script>
|