You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have tested this cool plugin with phonegap / jquery mobile and everything works fine except that the callback function doesnt "hide" the refreshing element and it doesn't stop.
The text was updated successfully, but these errors were encountered:
I think it becauses removeTransition function did not be executed.please try below...
update before:
content.addEventListener('transitionEnd', removeTransition);
update after:
content.on('webkitTransitionEnd', removeTransition);
One more,add beflow into removeTransition function.
status_indicator.css('top','-' + status_indicator.height() + 'px');
Hello,
I have tested this cool plugin with phonegap / jquery mobile and everything works fine except that the callback function doesnt "hide" the refreshing element and it doesn't stop.
The text was updated successfully, but these errors were encountered: