OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 | |
3 <html> | |
4 <head> | |
5 <meta charset="utf-8"> | |
6 <title>Sample app</title> | |
7 </head> | |
8 | |
9 <body> | |
10 <input type="text" bind-value="myString" | |
11 placeholder="Type here"> | |
12 | |
13 <div> Shouted: {{shouted}} </div> | |
sethladd
2013/08/08 05:09:12
let's wrap these in a template, to get closer to p
Kathy Walrath
2013/08/08 17:09:39
Done.
| |
14 <div> Palindromic: {{palindrome}} </div> | |
15 | |
16 <script type="application/dart" src="webui.dart"></script> | |
17 <script src="packages/browser/dart.js"></script> | |
18 </body> | |
19 </html> | |
OLD | NEW |