Skip to content

Commit f9badce

Browse files
author
Matt
committed
Add missing close parens
1 parent 1349f37 commit f9badce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jquery.reveal.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@
4646
modal.delay(options.animationSpeed / 2).animate({
4747
"top": $(document).scrollTop() + topMeasure + 'px',
4848
"opacity": 1
49-
}, options.animationSpeed, unlockModal;
49+
}, options.animationSpeed, unlockModal);
5050
}
5151
if (options.animation == "fade") {
5252
modal.css({'opacity': 0, 'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});
5353
modalBg.fadeIn(options.animationSpeed / 2);
5454
modal.delay(options.animationSpeed / 2).animate({
5555
"opacity": 1
56-
}, options.animationSpeed, unlockModal;
56+
}, options.animationSpeed, unlockModal);
5757
}
5858
if (options.animation == "none") {
5959
modal.css({'visibility': 'visible', 'top': $(document).scrollTop() + topMeasure});

0 commit comments

Comments
 (0)