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

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

Issue 10800047: Extension Docs Server Version 2: Various fixes. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: ok now it should work Created 8 years, 5 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
1 <div> 1 <div>
2 <a name="type-{{name}}"></a> 2 <a name="type-{{name}}"></a>
3 <h4>{{name}}</h4> 3 <h4>{{name}}</h4>
4 <div> 4 <div>
5 <dt>{{+partials.type_name}}</dt> 5 <dt>{{+partials.type_name}}</dt>
6 <dd>{{{description}}}</dd> 6 <dd>{{{description}}}</dd>
7 <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd> 7 <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd>
8 {{?functions}} 8 {{?functions}}
9 <a name={{type.name}}-methods></a> 9 <a name={{type.name}}-methods></a>
10 <dd><h3>Methods of {{type.name}}</h3> 10 <dd><h3>Methods of {{type.name}}</h3>
11 <dd><dl>{{#functions}}{{+partials.function api:api prefix:type.name}}{{/}} </dl></dd> 11 <dd><dl>{{#functions}}{{+partials.function api:api prefix:type.name}}{{/}} </dl></dd>
12 {{/functions}} 12 {{/functions}}
13 {{?events}}
14 <a name={{type.name}}-events></a>
15 <dd><h3>Events of {{type.name}}</h3>
16 <dd><dl>{{#events}}{{+partials.event api:api prefix:type.name}}{{/}}</dl>< /dd>
17 {{/events}}
13 </div> 18 </div>
14 </div> 19 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698