We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73b1515 + fb12f6e commit b4d2d0eCopy full SHA for b4d2d0e
lib/web/fotorama/fotorama.js
@@ -1219,7 +1219,9 @@ fotoramaVersion = '4.6.4';
1219
}
1220
1221
function stopEvent(e, stopPropagation) {
1222
- e.preventDefault ? e.preventDefault() : (e.returnValue = false);
+ if (!Modernizr.touch) {
1223
+ e.preventDefault ? e.preventDefault() : (e.returnValue = false);
1224
+ }
1225
stopPropagation && e.stopPropagation && e.stopPropagation();
1226
1227
0 commit comments