2016-08-10 15:53:02 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<title>Signature Correlations</title>
|
2016-08-27 02:26:49 +03:00
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script src="https://d3js.org/d3.v3.min.js" type="text/javascript"></script>
|
2016-08-10 15:53:02 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script src="correlations.js" type="text/javascript"></script>
|
2016-08-28 20:31:52 +03:00
|
|
|
<script src="correlations_page.js" type="text/javascript"></script>
|
2016-09-24 20:06:48 +03:00
|
|
|
<span id="date" style="font-size: xx-small;"></span>
|
2016-09-30 15:52:31 +03:00
|
|
|
<select name="product" id="product">
|
|
|
|
<option selected>Firefox</option>
|
|
|
|
<option>FennecAndroid</option>
|
|
|
|
</select>
|
2016-08-10 15:53:02 +03:00
|
|
|
<select name="channel" id="channel">
|
|
|
|
<option selected>release</option>
|
|
|
|
<option>beta</option>
|
|
|
|
<option>aurora</option>
|
|
|
|
<option>nightly</option>
|
|
|
|
</select>
|
|
|
|
<input type="text" name="signature" id="signature" placeholder="Signature...">
|
2016-08-10 17:53:24 +03:00
|
|
|
<button id="signatureButton">Get correlations</button>
|
2016-08-10 15:53:02 +03:00
|
|
|
<br><br>
|
2016-08-28 20:31:52 +03:00
|
|
|
<pre id="correlations_text"></pre>
|
2016-08-27 02:26:49 +03:00
|
|
|
<svg id="correlations_image" width="1200" height="900"></svg>
|
2016-08-10 15:53:02 +03:00
|
|
|
</body>
|
|
|
|
</html>
|