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

Side by Side Diff: client/web/library-panel.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/item.html ('k') | client/web/link.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-library-panel"> 1 <polymer-element name="dartdoc-library-panel">
2 <template> 2 <template>
3 <div class="list-group affix-left" id="library-panel"> 3 <div class="list-group affix-left" id="library-panel">
4 <template repeat="{{viewer.libraries}}"> 4 <template repeat="{{viewer.libraries}}">
5 <a href="#{{linkHref}}" class="list-group-item">{{decoratedName}}</a> 5 <a href="{{prefixedLinkHref}}" class="list-group-item">
6 {{decoratedName}}</a>
6 </template> 7 </template>
7 </div> 8 </div>
8 </template> 9 </template>
9 <script type="application/dart" src="library-panel.dart"></script> 10 <script type="application/dart" src="library-panel.dart"></script>
10 </polymer-element> 11 </polymer-element>
OLDNEW
« no previous file with comments | « client/web/item.html ('k') | client/web/link.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698