brianleroux / xui

A tiny javascript framework for mobile web apps.
http://github.com/xui/xui
391 stars 159 forks source link

Callback not firing when using tween method (Fixed - possibly) #27

Closed gcoop closed 13 years ago

gcoop commented 14 years ago

The callback wasn't firing when I was using the tween method. I have changed line 599 from if (typeof callback == 'function') options.after = callback; to if (typeof callback == 'function') opts.after = callback; Which seems to have fixed it :)