3
0
mirror of https://github.com/danielsogl/awesome-cordova-plugins.git synced 2025-03-07 02:31:07 +08:00

17 lines
387 B
HTML
Raw Normal View History

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>
<textarea [(ng-model)]="content.value" style="height: 150px; font-size: 11px"></textarea>
</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>