Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: example/component/news/web/news-component.html

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: review comments, fixed build.dart Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 This example is from 3 This example is from
4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news 4 https://github.com/dglazkov/Web-Components-Polyfill/blob/master/samples/news
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <title>News Component</title> 8 <title>News Component</title>
9 </head> 9 </head>
10 <body> 10 <body>
(...skipping 16 matching lines...) Expand all
27 <content select=".breaking"></content> 27 <content select=".breaking"></content>
28 </ul> 28 </ul>
29 </div> 29 </div>
30 <div class="other"> 30 <div class="other">
31 <h2>Other News</h2> 31 <h2>Other News</h2>
32 <ul> 32 <ul>
33 <content></content> 33 <content></content>
34 </ul> 34 </ul>
35 </div> 35 </div>
36 </template> 36 </template>
37 <script type="application/dart">
38 import 'package:polymer/polymer.dart';
39
40 class XNews extends PolymerElement {}
41
42 _init() {
Jennifer Messerly 2013/07/30 00:56:12 is _init still supported?
Siggi Cherem (dart-lang) 2013/07/30 23:32:04 Done. restored.
43 registerPolymerElement('x-news', () => new XNews());
44 }
45 </script>
37 </polymer-element> 46 </polymer-element>
38 </body> 47 </body>
39 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698