1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-17 06:52:27 +01:00

[bug] in feature tours, next and previous arrows may be broken on some systems

This commit is contained in:
Sylvain 2020-03-04 14:29:11 +01:00
parent 4c502ba83f
commit 0fdce5d1f2
2 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# Changelog Fab-manager
- Fix a bug: in feature tours, next and previous arrows may be broken on some systems
## v4.3.0 2020 March 04
- Ability to configure reservation slot restricted for plan subscribers
@ -19,6 +21,7 @@
- Administrators can to book machine/space/training slots, until 1 month in the past
- Filter members by non-validated emails or by inactive for 3 years
- Ability to customize the title of the link to the about page
- Feature tours for administrators that provides contextual help
- Automatic version check with security alerts
- Public endpoint to check the system health
- Configuration of phone number in members registration forms: can be required or optional, depending on `PHONE_REQUIRED` configuration

View File

@ -2,10 +2,16 @@
<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">
<button type="button" class="btn btn-sm btn-default" ng-if="tourStep.isPrev()" ng-click="tour.prev()" translate>⮜ {{ 'app.shared.tour.previous' }}</button>
<button type="button" class="btn btn-sm btn-default" ng-if="tourStep.isPrev()" ng-click="tour.prev()">
<i class="fa fa-caret-left" aria-hidden="true"></i>
<span translate>{{ 'app.shared.tour.previous' }}</span>
</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>
<button type="button" class="btn btn-sm btn-default" ng-if="tourStep.isNext()" ng-click="tour.next()">
<span translate>{{ 'app.shared.tour.next' }}</span>
<i class="fa fa-caret-right" aria-hidden="true"></i>
</button>
<div class="button-placekeeper" ng-if="!tourStep.isNext()"></div>
</div>
</div>