-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
29 lines (29 loc) · 1010 Bytes
/
demo.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
<!doctype html>
<html lang="en">
<head>
<title>cc-hello-world demo</title>
</head>
<body>
<script scope-greeting="Hi"
scope-target="You"
type="text/stache"
autoload>
<ul>
<li>
<cc-hello-world></cc-hello-world>
<li>
<cc-hello-world greeting="{greeting}" target="Bitovi" excited></cc-hello-world>
<li>
<cc-hello-world greeting="{greeting}" target="{target}">
Name: <input value="World" can-value="{target}">
</cc-hello-world>
</ul>
<button type="button" can-click="{attr 'greeting' 'Meh'}">
Do something boring
</button>
</script>
<script src="bower_components/steal/steal.js"
config-path="stealconfig.js"></script>
<script src="dist/demo-loader.js"></script>
</body>
</html>