RightJS v1.5.6 is out
Continuing to practice our agile rolling releases.
During the last couple of weeks, some new features appeared and couple issues were fixed. So here we go, RightJS v1.5.6, much better than before!
- The events delegation feature, now properly supports `focus` and `blur` events. Nothing kinky in our case, it's all transparent and cool, just use the names as nothing happened.
- Events delegation method String#behave was renamed to the more convenient and standard String#on, so now it looks all the same way no matter where you handle your events. The old version was marked as deprecated, plz update your code if you use the feature.
- Smooth scrolling effect support was added for the window main scroll-bars. You now can refer `window`, or use additional attributes as with other Element effects.
new Fx.Scroll(window).start({y: 200});
window.scrollTo(0, 200, {duration: 'normal'});
$('element').scrollThere({duration: 'short'});
- IE opacity style processing was fixed, now all the opacity effects work properly
- IE bug with the Element#update method in case of SELECT elements was also fixed, now it all works nicely
This is about it. Enjoy!
Back to the news