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

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

Issue 2727573006: Fix rendering functions of "properties" of an api object (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {{#property}} 1 {{#property}}
2 <tr> 2 <tr>
3 <td>{{+partials.type_name link:link type:property/}}</td> 3 <td>{{+partials.type_name link:link type:property/}}</td>
4 <td><code id="{{id}}">{{api.namespace}}.{{name}}</code></td> 4 <td><code id="{{id}}">{{api.namespace}}.{{name}}</code></td>
5 <td> 5 <td>
6 {{?availability}} 6 {{?availability}}
7 <p class="availability"> 7 <p class="availability">
8 {{+availability.partial content:availability item:property/}} 8 {{+availability.partial content:availability item:property/}}
9 </p> 9 </p>
10 {{/availability}} 10 {{/availability}}
11 {{?description}} 11 {{?description}}
12 {{{description}}} 12 {{{description}}}
13 {{/description}} 13 {{/description}}
14 {{?properties}} 14 {{?properties}}
15 <table class="innerTable"> 15 <table class="innerTable">
16 <thead><th colspan="3">Properties</th></thead> 16 <thead><th colspan="3">Properties</th></thead>
17 {{#p:properties}} 17 {{#p:properties}}
18 {{+partials.parameter_full parameter:p parentName:false/}} 18 {{+partials.parameter_full parameter:p parentName:false/}}
19 {{/properties}} 19 {{/properties}}
20 </table> 20 </table>
21 {{/properties}} 21 {{/properties}}
22 {{?functions}} 22 {{?functions}}
23 <table class="innerTable"> 23 <table class="innerTable">
24 <thead><th colspan="3">Functions</th></thead> 24 <thead><th colspan="3">Functions</th></thead>
25 {{#f:functions}} 25 {{#f:functions}}
26 {{+partials.function function:f parentName:false/}} 26 <tr><td>
27 {{+partials.function function:f parentName:false/}}
28 </td></tr>
27 {{/functions}} 29 {{/functions}}
28 </table> 30 </table>
29 {{/functions}} 31 {{/functions}}
30 </td> 32 </td>
31 </tr> 33 </tr>
32 {{/property}} 34 {{/property}}
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698