diff options
| author | 2020-06-03 13:39:42 -0400 | |
|---|---|---|
| committer | 2020-06-03 18:39:42 +0100 | |
| commit | 0f47403d0220757fed189b76e2071e25b1025cb8 (patch) | |
| tree | 879bf72c4476f0a5e0d82da99d7ff2b2276bcaca /src/main/resources/stats.html | |
| parent | Fix search dialog hanging for a short time sometimes (#250) (diff) | |
| download | enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.tar.gz enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.tar.xz enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.zip | |
Split GUI code to separate module (#242)
* Split into modules
* Post merge compile fixes
Co-authored-by: modmuss50 <modmuss50@gmail.com>
Diffstat (limited to 'src/main/resources/stats.html')
| -rw-r--r-- | src/main/resources/stats.html | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/main/resources/stats.html b/src/main/resources/stats.html deleted file mode 100644 index fcff7c0..0000000 --- a/src/main/resources/stats.html +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="UTF-8"> | ||
| 5 | <meta content="width=device-width, initial-scale=1" name="viewport"> | ||
| 6 | <title>Stats</title> | ||
| 7 | <link href="https://cdn.anychart.com/releases/v8/css/anychart-ui.min.css" rel="stylesheet" type="text/css"> | ||
| 8 | <style> | ||
| 9 | html, body, #container { | ||
| 10 | width: 100%; | ||
| 11 | height: 100%; | ||
| 12 | margin: 0; | ||
| 13 | padding: 0; | ||
| 14 | } | ||
| 15 | </style> | ||
| 16 | </head> | ||
| 17 | |||
| 18 | <body> | ||
| 19 | <div id="container"></div> | ||
| 20 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-base.min.js"></script> | ||
| 21 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-sunburst.min.js"></script> | ||
| 22 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-exports.min.js"></script> | ||
| 23 | <script src="https://cdn.anychart.com/releases/v8/js/anychart-ui.min.js"></script> | ||
| 24 | <script> | ||
| 25 | anychart.onDocumentReady(function () { | ||
| 26 | var chart = anychart.sunburst([/*data*/], "as-tree"); | ||
| 27 | chart.sort("desc"); | ||
| 28 | chart.calculationMode("parent-independent"); | ||
| 29 | chart.container("container"); | ||
| 30 | chart.draw(); | ||
| 31 | }); | ||
| 32 | </script> | ||
| 33 | </body> | ||
| 34 | </html> | ||