Index: src/tests/site/code/webui/web/webui.html |
diff --git a/src/tests/site/code/webui/web/webui.html b/src/tests/site/code/webui/web/webui.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..13f14b44855926e7171e0a53ddd5f088148a3960 |
--- /dev/null |
+++ b/src/tests/site/code/webui/web/webui.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+ |
+<html> |
+ <head> |
+ <meta charset="utf-8"> |
+ <title>Sample app</title> |
+ </head> |
+ |
+ <body> |
+<input type="text" bind-value="myString" |
+ placeholder="Type here"> |
+ |
+<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.
|
+<div> Palindromic: {{palindrome}} </div> |
+ |
+<script type="application/dart" src="webui.dart"></script> |
+<script src="packages/browser/dart.js"></script> |
+ </body> |
+</html> |