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

Side by Side Diff: client/web/breadcrumbs.html

Issue 149573008: Factor out the anchor prefix to easily allow switching to #! (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Fixes from review 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
« no previous file with comments | « client/web/app.dart ('k') | client/web/comment.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <polymer-element name="dartdoc-breadcrumbs"> 1 <polymer-element name="dartdoc-breadcrumbs">
2 <template> 2 <template>
3 <ul class="nav navbar-nav"> 3 <ul class="nav navbar-nav">
4 <template repeat="{{breadcrumbs}}"> 4 <template repeat="{{breadcrumbs}}">
5 <li><a class="btn-link" href="#{{linkHref}}">{{decoratedName}}</a></li> 5 <li><a class="btn-link" href="{{prefixedLinkHref}}">
6 {{decoratedName}}</a></li>
6 </template> 7 </template>
7 <template if="{{lastCrumb}}"> 8 <template if="{{lastCrumb}}">
8 <li class="active"> 9 <li class="active">
9 <a class="btn-link">{{lastCrumb.decoratedName}}</a> 10 <a class="btn-link">{{lastCrumb.decoratedName}}</a>
10 </li> 11 </li>
11 </template> 12 </template>
12 </ul> 13 </ul>
13 </template> 14 </template>
14 <script type="application/dart" src="breadcrumbs.dart"></script> 15 <script type="application/dart" src="breadcrumbs.dart"></script>
15 </polymer-element> 16 </polymer-element>
OLDNEW
« no previous file with comments | « client/web/app.dart ('k') | client/web/comment.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698