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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
OLDNEW
(Empty)
1 <table class="intro">
cduvall 2013/03/21 18:43:53 You need to delete this table from intros that alr
cduvall 2013/03/21 18:47:43 But only delete the description and availability p
2 <tr>
3 <th scope="col"></th>
4 <th scope="col"></th>
5 </tr>
6 <tr>
7 <td>
8 <strong>Description:</strong>
9 </td>
10 <td>
11 {{?api.description}}
12 {{{api.description}}}
13 {{:}}
14 No description has been written yet.
15 {{/}}
16 </td>
17 </tr>
18 <tr>
19 <td>
20 <strong>Availability:</strong>
21 </td>
22 <td>
23 {{?api.availability}}
24 {{?api.availability_generated}}
25 Google Chrome {{api.availability}}
26 {{:}}
27 {{api.availability}}
28 {{/}}
29 {{:}}
30 Not currently available.
31 {{/}}
32 </td>
33 </tr>
34 <tr>
35 <td>
36 <strong>Permissions:</strong>
cduvall 2013/03/21 18:47:43 Take out permissions, we don't generate this yet.
epeterson 2013/03/25 19:35:11 Done.
37 </td>
38 <td>
39 {{?api.perms}}
40 {{api.perms}}
41 {{:}}
42 None
43 {{/}}
44 </td>
45 </tr>
46 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698