redoc/lib/components/MethodsList/methods-list.html
2015-10-30 10:26:23 +02:00

11 lines
402 B
HTML

<div class="methods">
<div class="tag" *ng-for="#tag of data.tags">
<div class="tag-info" [attr.tag]="tag.name">
<h1> {{tag.name}} </h1>
<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"
[attr.tag]="method.tag"></method>
</tag>
</div>