Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <div> | 1 <div> |
| 2 <a name="property-{{name}}"></a> | 2 <a name="property-{{name}}"></a> |
|
not at google - send to devlin
2012/09/28 04:03:11
move name onto id of the property
cduvall
2012/09/29 00:37:49
Done.
| |
| 3 <h4>{{name}}</h4> | 3 <h4>{{name}}</h4> |
| 4 <div class="summary"> | 4 <div class="summary"> |
| 5 <span>chrome.{{api.name}}.{{name}}</span> | 5 <span>chrome.{{api.name}}.{{name}}</span> |
| 6 </div> | 6 </div> |
| 7 <div> | 7 <div> |
| 8 <dt><span class="property">{{name}}</span> {{+partials.type_name}}</dt> | 8 <dt><span class="property">{{name}}</span> {{+partials.type_name}}</dt> |
| 9 {{?description}}<dd> | 9 {{?description}}<dd> |
| 10 {{{description}}} | 10 {{{description}}} |
| 11 </dd>{{/description}} | 11 </dd>{{/description}} |
| 12 <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd> | 12 {{?properties}} |
| 13 <dd><dl>{{#functions}}{{+partials.function}}{{/}}</dl></dd> | 13 <a name={{property.name}}-properties></a> |
|
not at google - send to devlin
2012/09/28 04:03:11
I think this should actually be a <h4 id="...">Pro
cduvall
2012/09/29 00:37:49
Done.
| |
| 14 <dd><dl>{{#properties}} | |
| 15 {{+partials.parameter_full prefix:property.name property:true}} | |
|
not at google - send to devlin
2012/09/28 04:03:11
"is_property" would be less confusing
cduvall
2012/09/29 00:37:49
Done.
| |
| 16 {{/}}</dl></dd> | |
| 17 {{/properties}} | |
| 18 {{?functions}} | |
| 19 <a name={{property.name}}-functions></a> | |
|
not at google - send to devlin
2012/09/28 04:03:11
ditto
cduvall
2012/09/29 00:37:49
Done.
| |
| 20 <dd><dl>{{#functions}} | |
| 21 {{+partials.function}} | |
| 22 {{/}}</dl></dd> | |
| 23 {{/functions}} | |
| 14 </div> | 24 </div> |
| 15 </div> | 25 </div> |
| OLD | NEW |