-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.html
39 lines (35 loc) · 1.35 KB
/
app.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<head>
<title>Project Template</title>
<!-- Ample SDK runtime and languages-->
<script type="text/javascript" src="/amplesdk/ample/runtime.js"></script>
<script type="text/javascript" src="/amplesdk/ample/plugins/cookie/cookie.js"></script>
<script type="text/javascript" src="/amplesdk/ample/languages/xul/xul.js"></script>
<link type="text/ample+css" href="/amplesdk/ample/languages/xul/themes/default/style.css" rel="stylesheet" />
<style>
html,
body {
margin: 0;
padding:0;
}
</style>
<!-- MVC resources -->
<script type="text/javascript" src="mvc/mvc.js"></script>
<!-- App resources -->
<!-- Context: Main -->
<script type="text/javascript" src="src/main.js"></script>
<link type="text/ample+css" href="src/view/style/main.css" rel="stylesheet"/>
<!-- Context: Main.Workspace -->
<script type="text/javascript" src="src/.children/workspace/workspace.js"></script>
<!-- Application start up -->
<script type="text/javascript">
ample.ready(function() {
void new Main().sendNotification("Startup");
});
</script>
</head>
<body>
<script type="application/ample+xml" src="src/view/main.xml"></script>
</body>
</html>