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

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/home.html

Issue 176943008: Update the Angular/DI tests to latest from github. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 </head>
6 <body>
7 <element name="x-home" constructor="HomeComponent" extends="div">
8 <template>
9 <h1>Welcome</h1>
10 <p>
11 Welcome the the route package sample page.
12 </p>
13 <h3>Quick links</h3>
14 <ul>
15 <li class="active">
16 <a href="{{links['100001']['info']}}">Company 100001</a>
17 (<a href="{{links['100001']['activities']}}">activities</a>,
18 <a href="{{links['100001']['notes']}}">notes</a>)
19 </li>
20 <li class="active">
21 <a href="{{links['111111']['info']}}">Company 111111</a>
22 (<a href="{{links['111111']['activities']}}">activities</a>,
23 <a href="{{links['111111']['notes']}}">notes</a>)
24 </li>
25 </ul>
26 </template>
27 <script type="application/dart" src="home.dart"></script>
28 </element>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698