-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelios.html
executable file
·34 lines (32 loc) · 1.56 KB
/
helios.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
<!DOCTYPE html>
<html>
<head>
<title>Helios IDE</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Nicolas Petton" />
<link rel="stylesheet" type="text/css" href='js/lib/bootstrap/css/bootstrap.css' />
<link type="image/x-icon" rel="shortcut icon" href="/favicon.ico"/>
<link rel="stylesheet" type="text/css" href='css/helios.css' />
</head>
<body id="helios">
<div id="helper">Loading Helios...</div>
<div id="includes">
<script type='text/javascript' src='js/lib/jQuery/jquery-1.8.2.min.js'></script>
<script type='text/javascript' src='js/lib/jQuery/jquery-ui-1.8.24.custom.min.js'></script>
<script type='text/javascript' src='js/lib/bootstrap/js/bootstrap.js'></script>
<script type='text/javascript' src='js/lib/showdown.js'></script>
<script type='text/javascript' src='js/amber.js'></script>
<script type='text/javascript'>
loadAmber({packages: [
'Spaces', 'Helios-Core', 'Helios-Exceptions', 'Helios-Commands-Core',
'Helios-Commands-Tools', 'Helios-Commands-Browser', 'Helios-Layout', 'Helios-KeyBindings',
'Helios-Browser', 'Helios-Workspace', 'Helios-Transcript', 'Helios-Debugger',
'Helios-Inspector', 'Helios-References', 'Helios-Announcements', 'Helios-Workspace-Tests'
]})
window.onbeforeunload = function() {
return 'Do you want to close Amber? All uncommitted changes will be lost.';
};
</script>
</div>
</body>
</html>