This change adds Github edit and view links to methods and decorator options. It is possible to add these to properties also but the UI is rather tight as these are displayed in a table. PR Close #24000
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
{% import "lib/memberHelpers.html" as memberHelpers -%}
|
|
{% import "lib/descendants.html" as descendants -%}
|
|
{% import "lib/paramList.html" as params -%}
|
|
{% extends 'export-base.template.html' -%}
|
|
|
|
{% block overview %}
|
|
{% include "includes/class-overview.html" %}
|
|
{% endblock %}
|
|
{% block details %}
|
|
{% block additional %}{% endblock %}
|
|
{% include "includes/description.html" %}
|
|
{$ memberHelpers.renderProperties(doc.staticProperties, 'static-properties', 'static-property', 'Static Properties') $}
|
|
{$ memberHelpers.renderMethodDetails(versionInfo, doc.staticMethods, 'static-methods', 'static-method', 'Static Methods') $}
|
|
{% if doc.constructorDoc %}
|
|
<h2>Constructor</h2>
|
|
{$ memberHelpers.renderMethodDetail(versionInfo, doc.constructorDoc, 'constructor') $}{% endif %}
|
|
|
|
{$ memberHelpers.renderProperties(doc.properties, 'instance-properties', 'instance-property', 'Properties') $}
|
|
|
|
{$ memberHelpers.renderMethodDetails(versionInfo, doc.methods, 'instance-methods', 'instance-method', 'Methods') $}
|
|
|
|
{% block annotations %}{% include "includes/annotations.html" %}{% endblock %}
|
|
{% endblock %}
|