redoc/lib/components/MethodsList/methods-list.html

11 lines
492 B
HTML
Raw Normal View History

2015-10-21 14:07:22 +03:00
<div class="methods">
<div class="tag" *ng-for="#tag of data.tags">
2015-10-30 11:26:23 +03:00
<div class="tag-info" [attr.tag]="tag.name">
2015-11-29 20:24:46 +03:00
<h1 class="sharable-header"> <a class="share-link" href="#{{tag.name}}"></a>{{tag.name}} </h1>
2015-10-29 00:37:16 +03:00
<p *ng-if="tag.description" inner-html="{{ tag.description | marked }}"> </p>
</div>
<method *ng-for="#method of tag.methods" [pointer]="method.pointer" [attr.pointer]="method.pointer"
2015-11-27 01:43:01 +03:00
[attr.tag]="method.tag" [tag]="method.tag"></method>
</tag>
2015-10-08 23:21:51 +03:00
</div>