-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (65 loc) · 1.99 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
69
<!DOCTYPE html>
<html>
<head>
<title>Tower Directive</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../build/build.css" />
</head>
<body>
<div id="tests">
<background src="url"></background>
<ul id="precompiled-list">
<!-- data-each="post in posts" -->
<li>
<span data-text="post.title">One</span>
</li>
<li>
<span data-text="post.title">Two</span>
</li>
<li>
<span data-text="post.title">Three</span>
</li>
</ul>
<a id="should-execute-all" href="/" data-title="foo"><span data-text="bar"></span></a>
<p id="should-use-root-scope" href="/" data-html="foo"></p>
<div id="directives">
<div id="data-text-directive">
<span data-text="textDirective"></span>
</div>
<div id="data-attr-directive">
<a href="/" data-title="attrDirective"></a>
</div>
<div id="data-event-directive">
<a href="/" on-click="eventDirective"></a>
</div>
</div>
<h1 id="compile">
<span data-text="textDirective"></span>
<a href="/" data-title="attrDirective"></a>
<a href="/" on-click="eventDirective"></a>
</h1>
<div id="expressions">
<span id="operator-expression" data-operator-expression="count > 10"></span>
<span id="fn-arg-expression" data-fn-arg-expression="create(todo)"></span>
</div>
</div>
<div id="mocha" data-title="mocha"></div>
<div id='parent'>
<div id='child'>
</div>
</div>
<script src="http://code.jquery.com/jquery-2.0.0.min.js"></script>
<script src="../build/build.js"></script>
<script>require('visionmedia-mocha')</script>
<script>mocha.setup('bdd')</script>
<script src="/testem.js"></script>
<script src="index.js"></script>
<script>
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.run();
}
</script>
</body>
</html>