Skip to content

Commit

Permalink
fixed missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
medmen committed Feb 3, 2017
1 parent 92735fb commit 720f76c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Expand Up @@ -19,7 +19,7 @@ jQuery.fn.liScroll = function(settings) {
}, settings);
return this.each(function(){
var $strip = jQuery(this);
$strip.addClass("newsticker")
$strip.addClass("newsticker");
var stripWidth = 1;
$strip.find("li").each(function(i){
stripWidth += jQuery(this, i).outerWidth(true); // thanks to Michael Haszprunar and Fabien Volpi
Expand Down Expand Up @@ -53,4 +53,4 @@ jQuery(function(){
jQuery("div.ui-newsticker ul").liScroll({
// travelocity: 0.15 // the speed of scrolling
});
});
});

0 comments on commit 720f76c

Please sign in to comment.