rstacruz / jquery.transit

Super-smooth CSS3 transformations and transitions for jQuery
http://ricostacruz.com/jquery.transit
7.3k stars 864 forks source link

A small bugfix for minified version of this plugin #226

Closed dvdarkin closed 9 years ago

dvdarkin commented 9 years ago

Minified versions of jquery.transit can be prone to having this.offsetWidth line removed from deferredRun function during optimization stage. This leads to a severe bug of transitions not showing in minified versions.

Fixed by adding lhs to this.offsetWidth expression.

rstacruz commented 9 years ago

interesting