2020-01-28 18:15:11 +01:00
|
|
|
<div>
|
|
|
|
<div class="popover-content tour-step-content" bind-html-compile="tourStep.trustedContent || tourStep.content"></div>
|
|
|
|
<div class="popover-navigation tour-step-navigation">
|
|
|
|
<div class="btn-group">
|
2020-02-26 09:37:21 +01:00
|
|
|
<button type="button" class="btn btn-sm btn-default" ng-if="tourStep.isPrev()" ng-click="tour.prev()" translate>⮜ {{ 'app.shared.tour.previous' }}</button>
|
|
|
|
<div class="button-placekeeper" ng-if="!tourStep.isPrev()"></div>
|
|
|
|
<button type="button" class="btn btn-sm btn-default" ng-click="tour.end()" translate>{{ 'app.shared.tour.end' }}</button>
|
|
|
|
<button type="button" class="btn btn-sm btn-default" ng-if="tourStep.isNext()" ng-click="tour.next()" translate>{{ 'app.shared.tour.next' }} ⮞</button>
|
|
|
|
<div class="button-placekeeper" ng-if="!tourStep.isNext()"></div>
|
2020-01-28 18:15:11 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|