mirror of
https://github.com/donl/meteor-ionic.git
synced 2026-05-26 22:06:41 -06:00
34 lines
894 B
HTML
34 lines
894 B
HTML
<template name="ionPopup">
|
|
<div class="backdrop">
|
|
<div class="popup-container">
|
|
<div class="popup">
|
|
{{#if hasHead}}
|
|
<div class="popup-head">
|
|
{{#if title}}
|
|
<h3 class="popup-title">{{title}}</h3>
|
|
{{/if}}
|
|
{{#if subTitle}}
|
|
<h5 class="popup-sub-title">{{subTitle}}</h5>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if template}}
|
|
<div class="popup-body">
|
|
{{{template}}}
|
|
</div>
|
|
{{/if}}
|
|
{{#if buttons.length}}
|
|
<div class="popup-buttons">
|
|
{{#each buttons}}
|
|
<button data-action="buttonTapped" data-index="{{index}}"
|
|
class="button {{type}}">
|
|
{{{text}}}
|
|
</button>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|