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

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

Issue 48263002: list apis by channel info, e.g. dev, stable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: done Created 7 years, 1 month 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
OLDNEW
(Empty)
1 <table>
2 <tr><th>Name</th><th>Description</th>{{?is_stable}}<th>Since</th>{{/}}</tr>
3 {{#apis}}
4 <tr>
5 <td><a href="{{name}}.html">{{name}}</a></td>
6 <td>{{{description}}}</td>
7 {{?is_stable}}
8 <td>{{version}}</td>
9 {{/}}
10 </tr>
11 {{/apis}}
12 </table>
13
14
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698