Skip to content

Commit a2c677d

Browse files
committed
Fix syntax error.
1 parent 03e8759 commit a2c677d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superfish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
return this.each(function() {
4545
var s = this.serial = sf.o.length;
4646
var o = $.extend({},sf.defaults,op);
47-
o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels),
47+
o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels);
4848
var p = o.$path;
4949
for (var l = 0; l < p.length; l++){
5050
p.eq(l).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);

0 commit comments

Comments
 (0)