-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
25 lines (24 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Smashing</title>
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" media="screen, projection" />
</head>
<body>
<canvas id="myCanvas" width="500" height="500" style="background: #eee;"></canvas>
</body>
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!--<script src="./jquery-3.2.1.min.js"></script>-->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!--<script src="./jquery-ui.min.js"></script>-->
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"></script>
<script src="./renderer.js"></script>
<script>if (window.module) module = window.module;</script>
</html>