2015-11-28 16:17:04 -06:00
|
|
|
<ion-navbar *navbar>
|
|
|
|
<ion-title>
|
|
|
|
{{plugin.name}}
|
|
|
|
</ion-title>
|
|
|
|
</ion-navbar>
|
|
|
|
|
|
|
|
<ion-content>
|
2015-11-30 14:38:52 -06:00
|
|
|
<ion-input fixed-label>
|
2015-11-30 22:15:21 -06:00
|
|
|
<textarea [(ng-model)]="content.value" style="height: 150px; font-size: 11px" placeholder="Plugin output will go here as you test methods..."></textarea>
|
2015-11-30 14:38:52 -06:00
|
|
|
</ion-input>
|
2015-11-28 16:17:04 -06:00
|
|
|
<ion-list>
|
2015-11-30 12:34:54 -06:00
|
|
|
<button ion-item *ng-for="#method of methods" (click)="doMethod(method)">
|
2015-11-28 16:17:04 -06:00
|
|
|
{{method}}()
|
2015-11-30 12:34:54 -06:00
|
|
|
</button>
|
2015-11-28 16:17:04 -06:00
|
|
|
</ion-list>
|
|
|
|
</ion-content>
|