-
-
Notifications
You must be signed in to change notification settings - Fork 473
/
Copy pathindex.html
54 lines (44 loc) · 2.39 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<meta charset="utf-8">
<head>
<title>Jappy Activity</title>
<meta name="viewport" content="user-scalable=yes, initial-scale=1, maximum-scale=5, minimum-scale=1, width=device-width, viewport-fit=cover"/>
<link rel="stylesheet" media="not screen and (device-width: 1200px) and (device-height: 900px)"
href="lib/sugar-web/graphics/css/sugar-96dpi.css">
<link rel="stylesheet" media="screen and (device-width: 1200px) and (device-height: 900px)"
href="lib/sugar-web/graphics/css/sugar-200dpi.css">
<link rel="stylesheet" type="text/css" media="screen and (max-width: 800px)"
href="lib/sugar-web/graphics/css/sugar-72dpi.css">
<link rel="stylesheet" type="text/css" media="screen and (max-width: 800px)"
href="css/small-screens.css">
<link rel="stylesheet" type="text/css" media="screen and (max-width: 420px)"
href="css/tiny-screens.css">
<link rel="stylesheet" type="text/css" href="lib/cm/codemirror.css">
<link rel="stylesheet" type="text/css" href="lib/cm/theme/solarized.css">
<link rel="stylesheet" type="text/css" href="css/activity.css">
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<script src="lib/cm/codemirror.js"></script>
<script src="lib/cm/addon/selection/active-line.js"></script>
<script src="lib/cm/addon/edit/matchbrackets.js"></script>
<script src="lib/cm/mode/python/python.js"></script>
<script>if (window.module) module = window.module;</script>
</head>
<body>
<tool-bar></tool-bar>
<div id='canvas'>
<code-editor></code-editor>
</div>
<script src="lib/browser-polyfill.min.js"></script>
<!-- ^^ This is only necessary for very old browser ^^ (such as Webkit1) -->
<script src="lib/riot+compiler.min.js"></script>
<script src="lib/rapydscript.js"></script>
<script src="lib/jszip.min.js"></script>
<script src="lib/FileSaver.min.js"></script>
<!-- Precompiled riot tags (either activate these or the next group) -->
<!-- CAUTION Generated files - don't edit them directly. -->
<!-- Instead, get the source from: https://github.com/somosazucar/Jappy -->
<script src="js/codeeditor.js"></script>
<script src="js/toolbar.js"></script>
<script data-main="js/loader" src="lib/require.js"></script>
<script type="text/javascript" src="../../cordova.js"></script>
</body>