Skip to content

Commit

Permalink
Merge pull request #545 from jgeewax/method-listing
Browse files Browse the repository at this point in the history
Added a submethod listing to all classes in the docs.
  • Loading branch information
stephenplusplus committed May 8, 2015
2 parents b3ffc00 + 96d7449 commit b71928d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/site/components/docs/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,16 @@ <h2 ng-if="method.name[0].toUpperCase() === method.name[0]">
<span class="view-code-link" docs-code-link></span>
</h3>
<p ng-if="method.description" ng-bind-html="method.description"></p>
<div ng-show="method.name[0].toUpperCase() === method.name[0]"
class="notice">
Available methods:
<span ng-repeat="method in methods">
<span ng-show="method.name[0].toUpperCase() !== method.name[0]">
<a href="{{activeUrl + '?method=' + method.name}}"
>{{method.name}}</a>{{$last ? '' : ', '}}
</span>
</span>
</div>
<h4 ng-show="method.params">Parameters</h4>
<table class="table" ng-show="method.params">
<tbody>
Expand Down

0 comments on commit b71928d

Please sign in to comment.