jQuery-slimScroll
jQuery-slimScroll copied to clipboard
Issue for empty height param
Why did we change the logic for getting o.height from
o.height = (options.height == 'auto') ? me.parent().height() : options.height;
to
o.height = (o.height == 'auto') ? me.parent().height() : o.height;
Due to that If I am not passing height param it is setting 250px default value. :(