-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
29 lines (23 loc) · 1.16 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
<html>
<head>
<link rel="stylesheet" href="assets/bpm_styles.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="webfonts/webfonts.css" type="text/css" media="screen" charset="utf-8" />
<title>Learn.Ember.js</title>
</head>
<body>
</body>
<script type="text/javascript" src="assets/bpm_libs.js"></script>
<script type="text/javascript" src="ace/build/src/ace-uncompressed.js"></script>
<script type="text/javascript" src="ace/build/src/mode-javascript.js"></script>
<script type="text/javascript" src="ace/build/src/mode-html.js"></script>
<script type="text/javascript">
spade.require('learn-emberjs');
/* Note that our Ember code is evaluated in a Spade sandbox that defines its own require, but Spade does not
overwrite the global 'require' defined by Ace. Therefore Ace code can use its own version of define and require,
but we can only access them if we store the reference below. (Also stash a reference to 'ace' while we're at it.) */
Learn.ace = ace;
Learn.aceRequire = require;
Learn.aceDefine = define;
spade.require('learn-emberjs/main').main();
</script>
</html>