This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/directives/angular-tour-overlay.html

10 lines
436 B
HTML

<div class="angular-tour-overlay-element" ng-class="tour ? 'touring' : 'nottouring'">
<span class="tour-title">{{ tour.title }}</span>
<span class="step-title">{{ step.title }}</span>
<span class="step-content">{{ step.content }}</span>
<span class="controls">
<button ng-click="next()" ng-show="hasNextStep && !step.signal">Next</button>
<button ng-click="stop()" ng-show="!hasNextStep">Done</button>
</span>
</div>