redoc/lib/components/RequestSamples/request-samples.html

11 lines
500 B
HTML
Raw Normal View History

2016-05-06 00:48:41 +03:00
<header *ngIf="data.schemaPointer || data.samples.length"> Request samples </header>
<schema-sample *ngIf="!data.samples.length" [pointer]="data.schemaPointer"> </schema-sample>
2016-02-03 17:47:20 +03:00
<tabs *ngIf="data.samples.length" (change)=changeLangNotify($event)>
2016-02-01 15:54:58 +03:00
<tab tabTitle="JSON">
2016-05-06 00:48:41 +03:00
<schema-sample [pointer]="data.schemaPointer"> </schema-sample>
2016-01-31 20:37:51 +03:00
</tab>
2016-04-29 22:57:24 +03:00
<tab *ngFor="let sample of data.samples" [tabTitle]="sample.lang">
2016-01-31 20:37:51 +03:00
<pre innerHtml="{{sample.source | prism:sample.lang}}"></pre>
</tab>
</tabs>