Skip to content

Commit

Permalink
Fixed a slide transition bug in default theme js
Browse files Browse the repository at this point in the history
  • Loading branch information
adamzap committed Jul 15, 2010
1 parent e43f434 commit ace395c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion landslide/themes/default/js/slides.js
Expand Up @@ -85,7 +85,7 @@ function main() {
var updateSlideClasses = function() {
window.location.hash = "slide" + currentSlideNo;

for (var i=1; i<currentSlideNo-2; i++) {
for (var i=1; i<currentSlideNo-1; i++) {
changeSlideElClass(i, 'far-past');
}

Expand Down

0 comments on commit ace395c

Please sign in to comment.