-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from JudahNour/basicTable
add gopogh server with flake charts
- Loading branch information
Showing
10 changed files
with
1,452 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="CacheControl" content="no-cache, no-store, must-revalidate"/> | ||
<meta http-equiv="Pragma" content="no-cache"/> | ||
<meta http-equiv="Expires" content="0"/> | ||
|
||
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> | ||
<script src='https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/tablesort.min.js'></script> | ||
<!-- Include sort types you need --> | ||
<script src='https://cdnjs.cloudflare.com/ajax/libs/tablesort/5.2.1/sorts/tablesort.number.min.js'></script> | ||
|
||
<style> | ||
table { | ||
border: 1px solid gray; | ||
margin-left: auto; | ||
margin-right: auto; | ||
border-collapse: collapse; | ||
} | ||
td, th { | ||
border-bottom: 1px solid gray; | ||
padding: 8px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="dropdown_container"></div> | ||
<div id="chart_div"></div> | ||
<div id="version_div"></div> | ||
</body> | ||
<script> | ||
const el = document.createElement('script'); | ||
el.setAttribute('src', `flake_chart.js?t=${Math.random()}`); | ||
document.head.appendChild(el); | ||
</script> | ||
</html> |
Oops, something went wrong.