Hello @loenne and @jawada,
had the same problem and found a workaround which is working nicely on my smartphone:
Open the file “plugins/popup-builder/public/js/PopupBuilder.js”
Replace
currentTarget.bind('click touchstart', function(e) {
with
currentTarget.bind('click', function(e) {
on line 2625
And paste the following code above this line:
currentTarget.bind('swipe', function(e) {
return false;
});
The block should look like this:
var currentTarget = jQuery(this);
currentTarget.bind('swipe', function(e) {
return false;
});
currentTarget.bind('click', function(e) {
Hope this helps!
-
This reply was modified 11 months, 3 weeks ago by schnup89.