jQuery-slimScroll icon indicating copy to clipboard operation
jQuery-slimScroll copied to clipboard

Issue for empty height param

Open hsengiv opened this issue 7 years ago • 0 comments

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

hsengiv avatar Oct 10 '17 10:10 hsengiv