Skip to content

Commit

Permalink
Add missing close parens
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt committed Aug 29, 2011
1 parent 1349f37 commit f9badce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@
modal.delay(options.animationSpeed / 2).animate({
"top": $(document).scrollTop() + topMeasure + 'px',
"opacity": 1
}, options.animationSpeed, unlockModal;
}, options.animationSpeed, unlockModal);
}
if (options.animation == "fade") {
modal.css({'opacity': 0, 'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});
modalBg.fadeIn(options.animationSpeed / 2);
modal.delay(options.animationSpeed / 2).animate({
"opacity": 1
}, options.animationSpeed, unlockModal;
}, options.animationSpeed, unlockModal);
}
if (options.animation == "none") {
modal.css({'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});
Expand Down

0 comments on commit f9badce

Please sign in to comment.