-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathindex.html
68 lines (60 loc) · 2.33 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ember Data</title>
<link rel="stylesheet" href="/bower_components/qunit/qunit/qunit.css">
<script src="/bower_components/qunit/qunit/qunit.js"></script>
<script src="qunit-configuration.js"></script>
<script src="/bower_components/handlebars/handlebars.js" ></script>
<script type="text/javascript">
window.loadScript = function(url) {
document.write(unescape('%3Cscript src="'+url+'"%3E%3C/script%3E'));
};
</script>
<script type="text/javascript">
// Load custom version of jQuery if possible (assign to window so IE8 can use in later blocks)
var jQueryVersion = QUnit.urlParams.jquery;
if (jQueryVersion) {
loadScript('https://code.jquery.com/jquery-'+jQueryVersion+'.js');
}
// Close the script tag to make sure document.write happens
</script>
<script type="text/javascript">
// Fallback to default jQuery
if (jQueryVersion !== 'none' && !window.jQuery) {
loadScript('/bower_components/jquery/jquery.js');
}
// Close the script tag to make sure document.write happens
</script>
<script type="text/javascript">
var emberChannel = QUnit.urlParams.emberchannel || "release";
if (emberChannel === 'canary' || emberChannel === 'beta') {
window.Handlebars = null;
loadScript("http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v2.0.0.js");
}
</script>
<script src="ember-configuration.js"></script>
<script type="text/javascript">
var emberChannel = QUnit.urlParams.emberchannel || "release", emberPath;
if (emberChannel === "release") {
emberPath = "/bower_components/ember/ember.js";
} else {
emberPath = 'https://s3.amazonaws.com/builds.emberjs.com/' + emberChannel + '/ember.js';
}
loadScript(emberPath);
</script>
<!--[if lte IE 8]>
<script src="/bower_components/es5-shim/es5-shim.js"></script>
<script src="/bower_components/es5-shim/es5-sham.js"></script>
<![endif]]-->
<script src="/ember-data.js"></script>
<script src="ember-data-setup.js"></script>
<script src="ember-data-tests.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="/testem.js"></script>
</body>
</html>