rochal / jQuery-slimScroll

small jQuery plugin that transforms any div into a scrollable area with a nice scrollbar. Demo and more:
http://rocha.la/jQuery-slimScroll
2.23k stars 928 forks source link

Issue for empty height param #290

Open hsengiv opened 6 years ago

hsengiv commented 6 years ago

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. :(