We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a81418a commit 96d7449Copy full SHA for 96d7449
docs/site/components/docs/docs.html
@@ -132,6 +132,16 @@ <h2 ng-if="method.name[0].toUpperCase() === method.name[0]">
132
<span class="view-code-link" docs-code-link></span>
133
</h3>
134
<p ng-if="method.description" ng-bind-html="method.description"></p>
135
+ <div ng-show="method.name[0].toUpperCase() === method.name[0]"
136
+ class="notice">
137
+ Available methods:
138
+ <span ng-repeat="method in methods">
139
+ <span ng-show="method.name[0].toUpperCase() !== method.name[0]">
140
+ <a href="{{activeUrl + '?method=' + method.name}}"
141
+ >{{method.name}}</a>{{$last ? '' : ', '}}
142
+ </span>
143
144
+ </div>
145
<h4 ng-show="method.params">Parameters</h4>
146
<table class="table" ng-show="method.params">
147
<tbody>
0 commit comments