Index: dart/samples/webcomponents/game_of_life/components/components.html |
diff --git a/dart/samples/webcomponents/game_of_life/components/components.html b/dart/samples/webcomponents/game_of_life/components/components.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6de2484fb53f9ff7f720312d05e54054d10e7a70 |
--- /dev/null |
+++ b/dart/samples/webcomponents/game_of_life/components/components.html |
@@ -0,0 +1,25 @@ |
+<!DOCTYPE html> |
+ |
+<!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+ for details. All rights reserved. Use of this source code is governed by a |
+ BSD-style license that can be found in the LICENSE file. --> |
+ |
+<html> |
+ <head> |
+ <title>Game of Life Components</title> |
+ </head> |
+ <body> |
+ <element extends="div" name="x-cell" apply-author-styles> |
Siggi Cherem (dart-lang)
2012/09/05 20:53:03
let's add some documentation for each component, y
samhop
2012/09/07 21:41:30
Done.
|
+ <template> |
+ </template> |
+ </element> |
+ |
+ <element extends="div" name="x-control-panel" apply-author-styles> |
Siggi Cherem (dart-lang)
2012/09/05 20:53:03
ditto
samhop
2012/09/07 21:41:30
Done.
|
+ <template> |
+ <button type="button" id="start">Start</button> |
+ <button type="button" id="stop">Stop</button> |
+ <button type="button" id="step">Step</button> |
+ </template> |
+ </element> |
+ </body> |
+</html> |