{% if include.data.borrows.size > 0 %}
{% for item in include.data.borrows %}
{{ item }}
{% endfor %}
{% endif %}
{% if include.data.examples.size > 0 %}
Examples
{% for example in include.data.examples %}
{{example.content | filter_code}}
{% endfor %}
{% endif %}
{% if include.data.settings.size > 0 %}
| name |
type |
summary |
defined by |
{% for item in include.data.settings %}
| {{ item.name }} |
{% if item.dataTypes[0] contains 'tinymce' %}
{{ item.dataTypes[0] }}
{% else %}
{{ item.dataTypes[0] }}
{% endif %}
|
{{ item.desc | no_nl }} |
{{ item.definedBy }}
|
{% endfor %}
{% endif %}
{% if include.data.properties.size > 0 %}
| name |
type |
summary |
defined by |
{% for item in include.data.properties %}
| {{ item.name }} |
{% if item.dataTypes[0] contains 'tinymce' %}
{{ item.dataTypes[0] }}
{% else %}
{{ item.dataTypes[0] }}
{% endif %}
|
{{ item.desc | no_nl }} |
{{ item.definedBy }}
|
{% endfor %}
{% endif %}
{% if include.data.constructors.size > 0 %}
{% endif %}
{% if include.data.methods.size > 0 %}
{% endif %}
{% if include.data.events.size > 0 %}
{% endif %}
{% if include.data.constructors.size > 0 %}
Constructors
{% for item in include.data.constructors %}
{{ item.signature }}
{{ item.desc | no_nl }}
{% if item.examples.size > 0 %}
Examples
{% for example in item.examples %}
{{example.content | filter_code}}
{% endfor %}
{% endif %}
{% if item.params.size > 0 %}
Parameters
{% for param in item.params %}
-
{{ param.name }}
{% if param.types[0] contains 'tinymce' %}
({{ param.types[0] }})
{% else %}
({{ param.types[0] }})
{% endif %}
- {{ param.desc | no_nl }}
{% endfor %}
{% endif %}
{% if item.return.types.size > 0 %}
Return value
{% for type in item.return.types %}
-
{% if type contains 'tinymce' %}
{{ type }}
{% else %}
{{ type }}
{% endif %}
- {{ item.return.desc | no_nl }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if include.data.methods.size > 0 %}
Methods
{% for item in include.data.methods %}
{{ item.signature }}
{{ item.desc | no_nl }}
{% if item.examples.size > 0 %}
Examples
{% for example in item.examples %}
{{example.content | filter_code}}
{% endfor %}
{% endif %}
{% if item.params.size > 0 %}
Parameters
{% for param in item.params %}
-
{{ param.name }}
{% if param.types[0] contains 'tinymce' %}
({{ param.types[0] }})
{% else %}
({{ param.types[0] }})
{% endif %}
- {{ param.desc | no_nl }}
{% endfor %}
{% endif %}
{% if item.return.types.size > 0 %}
Return value
{% for type in item.return.types %}
-
{% if type contains 'tinymce' %}
{{ type }}
{% else %}
{{ type }}
{% endif %}
- {{ item.return.desc | no_nl }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if include.data.events.size > 0 %}
Events
{% for item in include.data.events %}
{{ item.desc | no_nl }}
{% if item.params.size > 0 %}
Parameters
{% for param in item.params %}
-
{{ param.name }}
{% if param.types[0] contains 'tinymce' %}
({{ param.types[0] }})
{% else %}
({{ param.types[0] }})
{% endif %}
- {{ param.desc | no_nl }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}