-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (87 loc) · 3.55 KB
/
index.html
File metadata and controls
101 lines (87 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
<head>
<title>Online Python Visualizer</title>
<script src="lib/codemirror.js"></script>
<link rel="stylesheet" href="lib/codemirror.css">
<script src="mode/python/python.js"></script>
<script src="jsrepl.js" id="jsrepl-script"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ></script>
<script src="jqconsole-2.7.min.js" charset="utf-8"></script>
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap-modal.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<body>
<div class="modal hide" id="loadLanguageModal">
<div class="modal-header">
<h3>Loading Interpreter</h3>
</div>
<div class="modal-body">
<div class="progress progress-striped active">
<div class="bar" style="width: 0%;" id="loaderProgressBar"></div>
</div>
<span class="label label-success hidden" id="loaderFinishedLabel">Finished Loading</span>
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" disabled="disabled" id="loadingDialogButton">Close</a>
</div>
</div>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Python Web Visualizer</a>
<ul class="nav">
<li class="active">
<a href="#">Home</a>
</li>
<!-- <li><a href="about.html">About</a></li> -->
</ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="main-row row-fluid">
<div class="span6 spanSize">
<div class="editorContainer" >
<div class="form-inline" id="exampleLinks">
<span>Example 1</span> <span>Example 2</span> <span>Example 3</span> <span>Example 4</span>
</div>
<div class="well codeMirrorWell" id="editorWell">
<div id="runButton">
</div>
</div>
</div>
</div>
<div class="span6 spanSize">
<div class="editorContainer halfBox halfBoxTop">
<div class="form-inline" id="speedButtons">
<label>Speed:</label>
<button class="btn">1</button>
<button class="btn">2</button>
<button class="btn">3</button>
<button class="btn">4</button>
<button class="btn btn-primary">5</button>
<button class="btn">6</button>
<button class="btn">7</button>
<button class="btn">8</button>
<button class="btn">9</button>
<button class="btn">10</button>
</div>
<div class="well codeMirrorWell" id="viewerWell">
</div>
</div>
<div class="halfBox halfBoxBottom">
<div class="well" id="consoleWell">
<div id="console">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>