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 <template id="stringManipulation" | |
11 instantiate="if shout != null"> | |
12 <input type="text" | |
13 bind-value="shout.myString" | |
14 placeholder="Type here"> | |
15 | |
16 <div> Shouted: {{shout.shouted}} </div> | |
17 <div> Palindromic: {{shout.palindrome}} </div> | |
18 </template> | |
19 | |
20 <script type="application/dart" src="webui.dart"></script> | |
21 <script src="packages/browser/dart.js"></script> | |
22 </body> | |
23 </html> | |
OLD | NEW |