Fix the case where someone tries the tour with an unsupported browser

This commit is contained in:
Joseph Schorr 2014-06-16 14:05:27 -04:00
parent 9d1ae8ba87
commit 2bf12996f5
2 changed files with 11 additions and 1 deletions

View file

@ -6,7 +6,11 @@
<button type="button" class="close" ng-click="stop()" aria-hidden="true">&times;</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>