eerne / scrollbar

MooTools Scrollbar class (extends Slider)
http://mild.ch/productslider
MIT License
29 stars 9 forks source link

Scrollbar doesn't initialize correctly with MT 1.3.0.1 #4

Closed bascht closed 13 years ago

bascht commented 13 years ago

When using Scrollbar.js with Mootools 1.3.0.1 (compat mode), the slider does not initialize, as "this.scroll" is not defined, but used in the parent initialization.

Tested w/ Firefox 3.6.12 / MacOS X.

Let me know if you need more information.

eerne commented 13 years ago

the issue is scrollbar is using some private internals of Slider. Slider has been slightly modified for 1.3 and still some more changes for 1.3.1.

Also Slider fires an change event on instantiation in 1.3. So this plugin definitely needs an update :)

Probably could also loose dependency on Fx.Scroll in the future. When I have time I move the current implementation to a 1.2.x branch and update master to work with 1.3.x

eerne commented 13 years ago

I released final 1.0.0 version, which is working with mootools 1.11 and 1.2.x

And started 2.0.0 rewrite of scrollbar. There are some API changes (it's now more Slider-like) and I got rid of Fx.Scroll dependency.

bascht commented 13 years ago

Thank you!