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

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/root-view.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="home.html">
6 <link rel="import" href="company-info-loader.html">
7 <link rel="import" href="portfolio.html">
8 </head>
9 <body>
10 <element name="x-root-view" constructor="RootView" extends="div">
11 <template>
12 <template if="currentRouteName == 'home'">
13 <x-home></x-home>
14 </template>
15 <template if="currentRouteName == 'companyInfo'">
16 <x-company-info-loader route="{{route.getRoute('companyInfo')}}"></x-c ompany-info-loader>
17 </template>
18 <template if="currentRouteName == 'portfolio'">
19 <x-porfolio route="{{route.getRoute('portfolio')}}"></x-porfolio>
20 </template>
21 </template>
22 <script type="application/dart" src="root-view.dart"></script>
23 </element>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « third_party/pkg/route_hierarchical/example/full/root-view.dart ('k') | third_party/pkg/route_hierarchical/lib/client.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698