1{{#property}}
2<td>{{+partials.variable_type type:property/}}</td>
3<td>{{?optional}}<span class="optional">(optional)</span>{{/}}
4    {{name}}</td>
5<td>
6{{?availability}}
7<p class="availability">
8  {{+availability.partial content:availability item:property/}}
9</p>
10{{/availability}}
11
12{{?description}}<p>
13  {{{description}}}
14</p>{{/description}}
15{{?returns}}	
16  <br/>Returns<span class="property">	
17    {{+partials.variable_type type:returns/}}.
18  </span>
19{{/returns}}
20{{+partials.enum_descriptions enums:enum_values/}}
21{{?array.is_object}}
22  <h4 title="">Properties of each object</h4>
23  <dl>
24    {{+partials.type type:array hideParamTOC:true /}}
25  </dl>
26{{/array.is_object}}
27{{?properties}}
28  <table class="innerTable">
29    {{#p:properties +partials.parameter_full
30        parameter:p
31        parentName:name
32        hideParamTOC:hideParamTOC /}}
33  </table>
34{{/properties}}
35{{?parameters}}
36  <table class="innerTable">
37    <tr><th colspan="3">Parameters</th></tr>
38    {{#p:parameters +partials.parameter_full
39        parameter:p
40        parentName:name
41        hideParamTOC:hideParamTOC /}}
42  </table>
43{{/parameters}}
44{{?isCallback}}
45  {{+partials.callback callback:asFunction/}}
46{{/isCallback}}
47</td>
48{{/property}}
49