Fix the case where someone tries the tour with an unsupported browser
This commit is contained in:
parent
9d1ae8ba87
commit
2bf12996f5
2 changed files with 11 additions and 1 deletions
|
@ -6,7 +6,11 @@
|
|||
<button type="button" class="close" ng-click="stop()" aria-hidden="true">×</button>
|
||||
</div>
|
||||
|
||||
<div class="tour-contents">
|
||||
<div class="tour-contents" ng-show="!supported">
|
||||
Your browser does not support features required for this tour. Please upgrade and try again.
|
||||
</div>
|
||||
|
||||
<div class="tour-contents" ng-show="supported">
|
||||
<div class="step-title" ng-shpw="step.title">{{ step.title }}</div>
|
||||
<div class="slide-animate-container">
|
||||
<div class="step-content" ng-show="step.content" ng-bind-html="step.content || ''"></div>
|
||||
|
|
Reference in a new issue