2020-06-17 13:26:50 +00:00
|
|
|
{{on-window 'resize' (action "resize") }}
|
2020-07-09 13:30:17 +00:00
|
|
|
<Portal @target="modal">
|
|
|
|
{{yield}}
|
|
|
|
<div {{ref this 'modal'}} ...attributes>
|
|
|
|
<input id={{name}} type="radio" name="modal" data-checked="{{checked}}" checked={{checked}} onchange={{action 'change'}} />
|
|
|
|
<div role="dialog" aria-modal="true">
|
|
|
|
<label for="modal_close"></label>
|
2018-10-19 15:17:02 +00:00
|
|
|
<div>
|
2020-07-09 13:30:17 +00:00
|
|
|
<div>
|
|
|
|
<header>
|
|
|
|
<label for="modal_close">Close</label>
|
|
|
|
<YieldSlot @name="header">
|
|
|
|
{{yield (hash
|
|
|
|
close=(action "close")
|
|
|
|
)}}
|
|
|
|
</YieldSlot>
|
|
|
|
</header>
|
|
|
|
<div>
|
|
|
|
<YieldSlot @name="body">
|
|
|
|
{{yield (hash
|
|
|
|
close=(action "close")
|
|
|
|
)}}
|
|
|
|
</YieldSlot>
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
<YieldSlot @name="actions" @params={{block-params (action "close")}}>
|
|
|
|
{{yield (hash
|
|
|
|
close=(action "close")
|
|
|
|
)}}
|
|
|
|
</YieldSlot>
|
|
|
|
</footer>
|
|
|
|
</div>
|
2018-10-19 15:17:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-07-09 13:30:17 +00:00
|
|
|
</Portal>
|