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

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

Issue 22801009: Bring the rest of the polymer.dart code from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/polymer/example/scoped_style/my_test.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 21 matching lines...) Expand all
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"> 37 <script type="application/dart">
38 import 'package:polymer/polymer.dart'; 38 import 'package:polymer/polymer.dart';
39 39
40 class XNews extends PolymerElement {} 40 class XNews extends PolymerElement {}
41 41
42 @polymerInitMethod 42 @initMethod
43 _init() { 43 _init() {
44 registerPolymerElement('x-news', () => new XNews()); 44 registerPolymerElement('x-news', () => new XNews());
45 } 45 }
46 </script> 46 </script>
47 </polymer-element> 47 </polymer-element>
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer/example/scoped_style/my_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698