1
1
mirror of https://github.com/varkor/quiver.git synced 2024-09-11 05:46:13 +03:00
quiver/index.html
varkor 7f985358ee Split ui.js up a bit
This could be more fine-grained, but it's a start, and allows me to start sharing data structures for the curved arrow refactor.
2020-02-22 13:16:10 +00:00

30 lines
1.0 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>quiver</title>
<link rel="icon" href="icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script type="text/javascript" src="ds.js"></script>
<script type="text/javascript" src="dom.js"></script>
<script type="text/javascript" src="quiver.js"></script>
<script type="text/javascript" src="ui.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-24316761-3"></script>
<script>
// Disable analytics locally.
if (window.location.hostname === "") {
window["ga-disable-UA-24316761-3"] = true;
}
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-24316761-3');
</script>
</head>
<body>
</body>
</html>