Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / templates / private / property.html
index 360ee99..37ce835 100644 (file)
@@ -1,22 +1,19 @@
 {{#property}}
-<dt>
-  {{?parentName}}
-  <h4 id="{{id}}" title="{{^hideParamTOC name/}}">
-    {{+partials.property_name_and_type property:property /}}
-  </h4>
-  {{:parentName}}
-  <h3 id="{{id}}" title="{{^hideParamTOC name/}}">
-    {{+partials.property_name_and_type property:property /}}
-  </h3>
-  {{/parentName}}
-</dt>
-<dd>
+<td>{{+partials.variable_type type:property/}}</td>
+<td>{{?optional}}<span class="optional">(optional)</span>{{/}}
+    {{name}}</td>
+<td>
 {{?deprecated}}
   {{+partials.warning_deprecated item:property/}}
 {{/deprecated}}
 {{?description}}
   {{{description}}}
 {{/description}}
+{{?returns}}   
+  <br/>Returns<span class="property">  
+    {{+partials.variable_type type:returns/}}.
+  </span>
+{{/returns}}
 {{+partials.enum_descriptions enums:enum_values/}}
 {{?array.is_object}}
   <h4 title="">Properties of each object</h4>
     {{+partials.type type:array hideParamTOC:true /}}
   </dl>
 {{/array.is_object}}
-</dd>
+{{?properties}}
+  <table class="innerTable">
+    {{#p:properties +partials.parameter_full
+        parameter:p
+        parentName:name
+        hideParamTOC:hideParamTOC /}}
+  </table>
+{{/properties}}
+{{?parameters}}
+  <table class="innerTable">
+    <tr><th colspan="3">Parameters</th></tr>
+    {{#p:parameters +partials.parameter_full
+        parameter:p
+        parentName:name
+        hideParamTOC:hideParamTOC /}}
+  </table>
+{{/parameters}}
+{{?is_callback}}
+  {{?parentCallback +partials.callback callback:parentCallback/}}
+{{/is_callback}}
+</td>
 {{/property}}