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

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/company-info-loader.html

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <link rel="import" href="company-info.html"> 5 <link rel="import" href="company-info.html">
6 </head> 6 </head>
7 <body> 7 <body>
8 <element name="x-company-info-loader" constructor="CompanyInfoLoaderComponen t" extends="div"> 8 <element name="x-company-info-loader" constructor="CompanyInfoLoaderComponen t" extends="div">
9 <template> 9 <template>
10 <template if="company == null"> 10 <template if="company == null">
11 Loading... 11 Loading...
12 </template> 12 </template>
13 <template if="company != null"> 13 <template if="company != null">
14 <x-company-info company="{{company}}" route="{{companyRoute}}"></x-com pany-info> 14 <x-company-info company="{{company}}" route="{{companyRoute}}"></x-com pany-info>
15 </template> 15 </template>
16 </template> 16 </template>
17 <script type="application/dart" src="company-info-loader.dart"></script> 17 <script type="application/dart" src="company-info-loader.dart"></script>
18 </element> 18 </element>
19 </body> 19 </body>
20 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698