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

Side by Side Diff: third_party/pkg/route_hierarchical/example/full/company-info.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-company-info" constructor="CompanyInfoComponent" extends="d iv">
8 <template>
9 <ul class="nav nav-pills">
10 <li class="{{activeClass('info')}}">
11 <a href="{{infoUrl}}">Info</a>
12 </li>
13 <li class="{{activeClass('activities')}}">
14 <a href="{{activitiesUrl}}">Activities</a>
15 </li>
16 <li class="{{activeClass('notes')}}">
17 <a href="{{notesUrl}}">Notes</a>
18 </li>
19 </ul>
20 <template if="section == 'info'">
21 <h2>{{company['name']}}: Info</h2>
22 <p>id: {{company['id']}}</p>
23 <p>revenue: {{company['revenue']}}</p>
24 </template>
25 <template if="section == 'activities'">
26 <h2>{{company['name']}}: Activities</h2>
27 <ul>
28 <li>a</li>
29 <li>b</li>
30 <li>c</li>
31 <li>d</li>
32 <li>e</li>
33 <li>f</li>
34 <li>g</li>
35 </ul>
36 </template>
37 <template if="section == 'notes'">
38 <h2>{{company['name']}}: Notes</h2>
39 <textarea></textarea><br/>
40 <button class="btn btn-primary">Add Note</button>
41 </template>
42 <script type="application/dart" src="company-info.dart"></script>
43 </template>
44 </element>
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698