After four weeks waiting on the silly smartaddons-support ... like other tickets i found the solution by myself.
The Events are handled but if you use swipe feature for smartphones, only horizontal events are handled. This means the vertical scroll-events are thrown away.
First workaround:
Disable swipe feature in the module options under "effect options".
to use swipe and still the vertical scrolling I will play around with these lines in
sj_university2/html/mod_sj_k2_extraslider
if($params->get('swipe_enable') == 1) { ?>
$this.touchwipe({
wipeLeft: function() {
$this.jcarousel('next');
return false;
},
wipeRight: function() {
$this.jcarousel('prev');
return false;
},
wipeUp: function() {
$this.jcarousel('next');
return false;
},
wipeDown: function() {
$this.jcarousel('prev');
return false;
}
});
wipeUp / wipeDown are not handled right over here...
I will fix it these days...and keep you up to date
...
Shame on the support team