Skip to content
This repository has been archived by the owner on Aug 6, 2019. It is now read-only.

Commit

Permalink
Fixes index demo progress
Browse files Browse the repository at this point in the history
.bar changed to .progress-bar class (usign bootstrap 3)
  • Loading branch information
yaim committed Sep 29, 2016
1 parent 592d2b1 commit 5287dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h2>Demo</h2>
</div>
</div>
<div id="bar" class="progress progress-striped active">
<div class="bar"></div>
<div class="progress-bar"></div>
</div>
<div class="tab-content">
<div class="tab-pane" id="tab1">
Expand Down Expand Up @@ -237,7 +237,7 @@ <h2>Demo</h2>
var $total = navigation.find('li').length;
var $current = index+1;
var $percent = ($current/$total) * 100;
$('#rootwizard').find('.bar').css({width:$percent+'%'});
$('#rootwizard').find('.progress-bar').css({width:$percent+'%'});
}});
});
</script>
Expand Down

0 comments on commit 5287dd7

Please sign in to comment.