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

Side by Side Diff: chrome/common/extensions/docs/templates/private/table_of_contents_items.html

Issue 102593005: Clean patch with DCC static content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests for sidenav_data_source Created 7 years 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
1 <ol> 1 <ol class="toc">
2 {{#i:items}} 2 {{#l0:items}}
3 <li {{?i.separator}}class="separator"{{/}}> 3 <li class="toplevel"><a data-list-item href="#{{l0.link}}"
4 <a href="#{{i.link}}" 4 {{#a0:l0.attributes}}{{a0.key}}="{{a0.value}}"{{/}}>{{{l0.title}}}</a>
5 data-list-item 5 {{?l0.subheadings}}
6 {{#a:i.attributes}}{{a.key}}="{{a.value}}"{{/}}>{{{i.title}}}</a> 6 <ol class="toc">
7 {{?i.subheadings +partials.table_of_contents_items items:i.subheadings /}} 7 {{#l1:l0.subheadings}}
8 <li><a data-list-item href="#{{l1.link}}"
9 {{#a1:l1.attributes}}{{a1.key}}="{{a1.value}}"{{/}}>{{{l1.title }}}</a>
10 {{?l1.subheadings}}
11 <ol class="toc">
12 {{#l2:l1.subheadings}}
13 <li><a data-list-item href="#{{l2.link}}"
14 {{#a2:l2.attributes}}{{a2.key}}="{{a2.value}}"{{/}}>{{{ l2.title}}}</a></li>
15 {{/l1.subheadings}}
16 </ol>
17 {{/l1.subheadings}}
18 </li>
19 {{/l0.subheadings}}
20 </ol>
21 {{/l0.subheadings}}
8 </li> 22 </li>
9 {{/items}} 23 {{/items}}
10 </ol> 24 </ol>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698