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