2019-12-13 17:20:29 +03:00
|
|
|
{{#if this.isVisible}}
|
2017-06-08 18:00:10 +03:00
|
|
|
{{!-- tether the throbber --}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<LiquidTether
|
|
|
|
@class="throbber-container"
|
|
|
|
@target={{this.target}}
|
|
|
|
@attachment="middle center"
|
|
|
|
@targetAttachment={{this.throbberAttachment}}
|
|
|
|
@targetOffset={{this.throbberOffset}}
|
|
|
|
>
|
2019-12-13 17:20:29 +03:00
|
|
|
<a class="throbber-trigger" href="#" {{action "open"}} id={{this._throbberElementId}}>
|
2017-06-08 18:00:10 +03:00
|
|
|
<span class="throbber"></span>
|
|
|
|
</a>
|
2020-01-16 18:14:03 +03:00
|
|
|
</LiquidTether>
|
2017-06-08 18:00:10 +03:00
|
|
|
|
2019-12-13 17:20:29 +03:00
|
|
|
{{#if this.isOpen}}
|
2017-06-08 18:00:10 +03:00
|
|
|
{{!-- wormhole the background click overlay --}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<LiquidWormhole @class="tour-container">
|
2017-06-08 18:00:10 +03:00
|
|
|
<div class="tour-background" {{action "close" on="click"}}></div>
|
2020-01-16 18:14:03 +03:00
|
|
|
</LiquidWormhole>
|
2017-06-08 18:00:10 +03:00
|
|
|
|
|
|
|
{{!-- tether the popover --}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<LiquidTether
|
|
|
|
@class="tour"
|
|
|
|
@target={{this._throbberElementSelector}}
|
|
|
|
@attachment={{this._popoverAttachment}}
|
|
|
|
@targetAttachment={{this._popoverTargetAttachment}}
|
|
|
|
@offset={{this._popoverOffset}}
|
|
|
|
>
|
2019-12-13 17:20:29 +03:00
|
|
|
<div class="popover-item popover-triangle-{{this.popoverTriangleClass}}">
|
|
|
|
<h3 class="popover-title">{{this._throbber.title}}</h3>
|
2017-06-08 18:00:10 +03:00
|
|
|
<div class="popover-body">
|
2019-12-13 17:20:29 +03:00
|
|
|
{{{this._throbber.message}}}
|
2017-06-08 18:00:10 +03:00
|
|
|
</div>
|
|
|
|
<footer class="popover-foot">
|
2017-06-12 16:38:44 +03:00
|
|
|
<a class="tour-optout" href="#" {{action 'optOut'}}>Not your first time? <em>Skip these tips</em></a>
|
|
|
|
<a class="tour-dismiss gh-btn gh-btn-black" href="#" {{action 'markAsViewed'}}><span>Ok, got it</span></a>
|
2017-06-08 18:00:10 +03:00
|
|
|
</footer>
|
|
|
|
</div>
|
2020-01-16 18:14:03 +03:00
|
|
|
</LiquidTether>
|
2017-06-08 18:00:10 +03:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|