forked from babel/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repl.html
56 lines (50 loc) · 1.5 KB
/
repl.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
55
56
---
layout: default
permalink: /repl/
fullscreen: true
redirect_from: "/repl.html"
custom_js_with_timestamps:
- babel.js
- repl.js
third_party_js:
- https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js
---
<div class="babel-repl">
<form class="form babel-repl-toolbar">
<div class="pull-left">
<div class="form-group">
<label for="option-experimental">
<input id="option-experimental" type="checkbox">
Experimental
</label>
</div>
<div class="form-group">
<label for="option-loose-mode">
<input id="option-loose-mode" type="checkbox">
Loose mode
</label>
</div>
<div class="form-group">
<label for="option-spec">
<input id="option-spec" type="checkbox">
High compliancy
</label>
</div>
<div class="form-group">
<label for="option-evaluate">
<input id="option-evaluate" type="checkbox">
Evaluate
</label>
</div>
</div>
<div class="pull-right">
<div class="form-group">
<strong>NOTE: This REPL is still using Babel 5.x but will be upgraded to Babel 6 very soon!</strong>
</div>
</div>
</form>
<div class="babel-repl-editor babel-repl-input"><div class="ace_editor"></div></div>
<div class="babel-repl-editor babel-repl-output"><div class="ace_editor"></div></div>
<div class="babel-repl-reporter babel-repl-errors"></div>
<div class="babel-repl-reporter babel-repl-console"></div>
</div>