diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-10-20 16:56:24 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 08:07:20 -0400 |
commit | f44ecdff975b637edb1c5d41d30a6924c8fd87d3 (patch) | |
tree | a623d64caf409ac6ba62653b131fb21d4008556a /website/index.html | |
parent | edb7b609f26b628a15c03455db945c58cde72408 (diff) |
feat: show only 20 benchmark data in inde.html
Diffstat (limited to 'website/index.html')
-rw-r--r-- | website/index.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/website/index.html b/website/index.html index 7b3b2a05b..b5357b691 100644 --- a/website/index.html +++ b/website/index.html @@ -48,13 +48,17 @@ <h2>Travis</h2> How long for Travis CI to return a green status for pull requests. <div id="travis-compile-time-chart"></div> + + <h2>References</h2> + <p> <a href="./all_benchmark.html">All benchmark data</a> + </main> <script src="https://unpkg.com/d3@5.7.0/dist/d3.min.js"></script> <script src="https://unpkg.com/c3@0.6.7/c3.min.js"></script> <script type="module"> - import { main } from "./app.js"; - main(); + import { drawCharts } from "./app.js"; + drawCharts("./recent.json"); </script> </body> </html> |