iQ.animate: only animate properties that are changing; f=raymond, r=sdwilsh

This commit is contained in:
Tim Taubert 2011-06-03 19:11:39 +02:00
parent 82e7c8700a
commit 5809976070

View File

@ -608,7 +608,7 @@ iQClass.prototype = {
});
this.css({
'-moz-transition-property': 'all', // TODO: just animate the properties we're changing
'-moz-transition-property': Object.keys(css).join(", "),
'-moz-transition-duration': (duration / 1000) + 's',
'-moz-transition-timing-function': easing
});