OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 | |
3 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
4 for details. All rights reserved. Use of this source code is governed by a | |
5 BSD-style license that can be found in the LICENSE file. --> | |
6 | |
7 <html> | |
8 <head> | |
9 <title>Game of Life Components</title> | |
10 </head> | |
11 <body> | |
12 <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.
| |
13 <template> | |
14 </template> | |
15 </element> | |
16 | |
17 <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.
| |
18 <template> | |
19 <button type="button" id="start">Start</button> | |
20 <button type="button" id="stop">Stop</button> | |
21 <button type="button" id="step">Step</button> | |
22 </template> | |
23 </element> | |
24 </body> | |
25 </html> | |
OLD | NEW |