Skip to content

Commit

Permalink
fixed a bug where data-gap was not working
Browse files Browse the repository at this point in the history
  • Loading branch information
aamirafridi committed Feb 4, 2015
1 parent 45e9dfc commit 47a3c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery.marquee.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
verticalDir = o.direction == 'up' || o.direction == 'down';

//no gap if not duplicated
o.gap = o.duplicated ? o.gap : 0;
o.gap = o.duplicated ? parseInt(o.gap) : 0;

//wrap inner content into a div
$this.wrapInner('<div class="js-marquee"></div>');
Expand Down

0 comments on commit 47a3c02

Please sign in to comment.