2015-05-09 10:17:09 +08:00
|
|
|
{{>_header}}
|
2015-04-28 04:29:08 +08:00
|
|
|
|
2015-05-09 10:17:09 +08:00
|
|
|
<h2>{{name}}</h2>
|
|
|
|
{{#if superClass}}
|
|
|
|
<span>extends {{superClass}}</span>
|
|
|
|
{{/if}}
|
2015-04-28 04:29:08 +08:00
|
|
|
|
|
|
|
<p>{{{description}}}</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{{#each sections}}
|
|
|
|
<li><a href="#{{name}}">{{name}}</a></li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
{{#if classProperties.length}}
|
|
|
|
<h3>Class Properties</h3>
|
|
|
|
|
|
|
|
{{#each classProperties}}
|
|
|
|
{{>_property}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if classMethods.length}}
|
|
|
|
<h3>Class Methods</h3>
|
|
|
|
|
|
|
|
{{#each classMethods}}
|
|
|
|
{{>_function}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
|
|
|
{{#if instanceMethods.length}}
|
|
|
|
<h3>Instance Methods</h3>
|
|
|
|
|
|
|
|
{{#each instanceMethods}}
|
|
|
|
{{>_function}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
2015-05-09 10:17:09 +08:00
|
|
|
{{>_footer}}
|