mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
11 lines
587 B
HTML
11 lines
587 B
HTML
{% import "lib/paramList.html" as params -%}
|
|
{% import "lib/memberHelpers.html" as memberHelper -%}
|
|
{% import "lib/descendants.html" as descendants -%}
|
|
{% extends 'export-base.template.html' -%}
|
|
|
|
{% block overview %}{% include "includes/interface-overview.html" %}{% endblock %}
|
|
{% block details %}
|
|
{% include "includes/description.html" %}
|
|
{$ memberHelper.renderProperties(doc.properties, 'instance-properties', 'instance-property', 'Properties') $}
|
|
{$ memberHelper.renderMethodDetails(versionInfo, doc.methods, 'instance-methods', 'instance-method', 'Methods') $}
|
|
{% endblock %}
|