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(','),
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(','),