The bug is that yuicompressor is not happy with the 'float' property
being standalone.  The fix is to quote the property 'float' on that
line:

Instead of:
        li.css({overflow: "hidden", float: o.vertical ? "none" :
"left"});

use:

        li.css({overflow: "hidden", 'float': o.vertical ? "none" :
"left"});

Hope that helps,
Jerry

http://www.whatcodecraves.com/

Reply via email to