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
I implemented SwipeView in a Cordova 3.5.0 project. All seems to be working fine, except on Android 4.2.2 there's a problem.
SwipeView detects the "transitionend" event on the Android native browser, but unfortunately this event is not implemented by this browser. "webkitTransitionend" is, however. After some googling I found that Modernizr had the same problems (for Android 4.1). They fixed it over here: bpierre/vue@057c086
I propose the same solution for SwipeView:
var vendors = 'webkitT,t,MozT,msT,OT,t'.split(','),
The text was updated successfully, but these errors were encountered:
I implemented SwipeView in a Cordova 3.5.0 project. All seems to be working fine, except on Android 4.2.2 there's a problem.
SwipeView detects the "transitionend" event on the Android native browser, but unfortunately this event is not implemented by this browser. "webkitTransitionend" is, however. After some googling I found that Modernizr had the same problems (for Android 4.1). They fixed it over here:
bpierre/vue@057c086
I propose the same solution for SwipeView:
var vendors = 'webkitT,t,MozT,msT,OT,t'.split(','),
The text was updated successfully, but these errors were encountered: