procom / templates /chart.html
thejagstudio's picture
Upload 121 files
f87b88a
raw
history blame contribute delete
No virus
1.48 kB
<!doctype html>
<html lang="en" data-reactroot="">
<head>
<link href="/static/chart/chartStyle.css" media="all" rel="stylesheet" type="text/css" />
<script type="module" src="/static/chart/chartScript1.mjs"></script>
<script type="module" src="/static/chart/chartScript2.mjs"></script>
<script type="module" src="/static/chart/chartScript3.mjs"></script>
</head>
<body style="margin:0;min-height:100%;position:relative;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif">
<div id="root">
</div>
<script id="reactInitData">
window.__data = "%%INITIAL_DATA%%";
</script>
<script type="text/javascript">
(function() {
var check = document.createElement('script');
if (!('noModule' in check) && 'onbeforeload' in check) {
var support = false;
document.addEventListener('beforeload', function(e) {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute('nomodule') || !support) {
return;
}
e.preventDefault();
}, true);
check.type = 'module';
check.src = '.';
document.head.appendChild(check);
check.remove();
}
}());
</script>
</body>
</html>