blob: 1d4e2e2d7429b202406efcc922b208eb1b2dccef [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>Embedded Graph Page</title>
<script>
var GRAPH_DATA = {{graph_data|safe}};
var REVISION_INFO = {{revision_info|safe}};
var XSRF_TOKEN = '{{xsrf_token}}';
</script>
<script src="{{static_dir}}/jquery_flot_bundle.js"></script>
<style>
html {
height: 100%;
}
body {
color: #222;
background-color: #fff;
font-family: Arial;
font-size: 13px;
height: 100%;
}
#chart {
height: 100%;
width: 100%;
}
#legend {
background-color: rgba(240, 240, 240, 0.5);
border: 1px solid #2d2d2d;
padding: 5px;
position: absolute;
top: 20px;
}
#legend dt::after {
content: ":";
}
#legend dd {
font-weight: bold;
}
</style>
</head>
<body>
<div id="chart"></div>
<div id="legend" style="display: none;"></div>
<script src={{static_dir}}/embed_bin.js></script>
<script>
// The initialize function is defined in the JS file loaded above.
document.addEventListener('DOMContentLoaded', initialize);
</script>
</body>
</html>