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

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

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

Powered by Google App Engine
This is Rietveld 408576698