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

9 lines
338 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">
<h1> {{tag.name}} </h1>
<p *ng-if="tag.description" inner-html="{{ tag.description | marked }}"> </p>
<method *ng-for="#method of tag.methods" [pointer]="method.pointer" [attr.pointer]="method.pointer"
[attr.tag]="method.tag"></method>
</tag>
2015-10-08 23:21:51 +03:00
</div>