forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayground.html
More file actions
70 lines (58 loc) · 2.71 KB
/
playground.html
File metadata and controls
70 lines (58 loc) · 2.71 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MakeCode Playground</title>
<meta name="Description" content="@description@" />
<!-- @include playground-head.html -->
<link data-inline="yes-please" href="/static/playground/spinner.css" rel="stylesheet" />
<link data-inline="yes-please" href="/static/playground/playground.css" rel="stylesheet" />
<link data-name="vs/editor/editor.main" rel="stylesheet" href="https://microsoft.github.io/monaco-editor/node_modules/monaco-editor/min/vs/editor/editor.main.css">
</head>
<body class="playground-page">
<pre data-preload="/playground/samples/basic/hello-world/sample.ts"></pre>
<nav class="ui menu inverted fixed borderless">
<div class="menu left">
<div class="ui item">
MakeCode Playground
</div>
</div>
<div class="menu right">
<a href="/docs" class="ui item">
Home
</a>
<a href="/playground" class="ui item">
Playground
</a>
<a href="/defining-blocks" class="ui item">
Help defining blocks
</a>
<a href="https://github.com/microsoft/pxt-sample" class="ui item" style="background-color:black">
Sample target
</a>
</div>
</nav>
<div id="loading">
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
<section id="playground">
</section>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js" integrity="sha256-wS9gmOZBqsqWxgIVgA8Y9WcQOa7PgSIX+rPA0VL2rbQ="
crossorigin="anonymous"></script>
<!-- @include playground-apptrackingweb.html -->
<!-- @include apptracking.html -->
<!-- @include thin-footer.html -->
<script>var require = { paths: { 'vs': 'https://microsoft.github.io/monaco-editor/node_modules/monaco-editor/min/vs' } };</script>
<script src="https://microsoft.github.io/monaco-editor/node_modules/monaco-editor/min/vs/loader.js"></script>
<script src="https://microsoft.github.io/monaco-editor/node_modules/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
<script src="https://microsoft.github.io/monaco-editor/node_modules/monaco-editor/min/vs/editor/editor.main.js"></script>
<script data-inline="yes-please" src="/static/playground/samples/all.js" type="text/javascript"></script>
<script data-inline="yes-please" src="/static/playground/playground.js" type="text/javascript"></script>
</body>
</html>