mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-26 22:06:41 -06:00
28 lines
887 B
HTML
28 lines
887 B
HTML
<template name="ionActionSheet">
|
|
<div class="action-sheet-backdrop">
|
|
<div class="action-sheet-wrapper">
|
|
<div class="action-sheet">
|
|
<div class="action-sheet-group">
|
|
{{#if titleText}}
|
|
<div class="action-sheet-title">
|
|
{{titleText}}
|
|
</div>
|
|
{{/if}}
|
|
{{#each buttons}}
|
|
<button class="button" data-index="{{index}}">{{{text}}}</button>
|
|
{{/each}}
|
|
</div>
|
|
{{#if destructiveText}}
|
|
<div class="action-sheet-group">
|
|
<button class="button destructive" data-destructive>{{{destructiveText}}}</button>
|
|
</div>
|
|
{{/if}}
|
|
{{#if cancelText}}
|
|
<div class="action-sheet-group">
|
|
<button class="button" data-cancel>{{{cancelText}}}</button>
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|