mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-01 11:03:01 +08:00
17 lines
451 B
HTML
17 lines
451 B
HTML
<ion-navbar *navbar>
|
|
<ion-title>
|
|
{{plugin.name}}
|
|
</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content>
|
|
<ion-input fixed-label>
|
|
<textarea [(ng-model)]="content.value" style="height: 150px; font-size: 11px" placeholder="Plugin output will go here as you test methods..."></textarea>
|
|
</ion-input>
|
|
<ion-list>
|
|
<button ion-item *ng-for="#method of methods" (click)="doMethod(method)">
|
|
{{method}}()
|
|
</button>
|
|
</ion-list>
|
|
</ion-content>
|