-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.2 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
<html>
<head>
<script src="/dnode.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"
type="text/javascript" ></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"
type="text/javascript" ></script>
<script src="/client.js" type="text/javascript"></script>
<script src="/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="/mode-c_cpp.js" type="text/javascript" charset="utf-8"></script>
<link href="css/Aristo/jquery-ui-1.8.7.custom.css" type="text/css" rel="stylesheet" />
<link href="css/webcc.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="barra">
<div id="compileButton">Compila</div>
<div id="runButton">Executa</div>
<div id="settingsButton">Preferències</div>
</div>
<div id="editor" /></div>
<div id="errors" /></div>
<script type="text/editor" id="program">
#include <iostream>
using namespace std;
int main() {
a = 1;
cout << "Hola, mon!" << endl;
}
</script>
<div id="configDialog" title="Preferències">
Indentació <br />
Tamany de la font <br />
</div>
</body>
</html>