Browse Source

Allow spider links to be clickable closes #70

pull/75/head
Zach Wise 13 years ago
parent
commit
a174d849a9
  1. 2
      source/js/VMM.TouchSlider.js

2
source/js/VMM.TouchSlider.js

@ -36,12 +36,10 @@ if(typeof VMM != 'undefined' && typeof VMM.TouchSlider == 'undefined') {
},
onTouchStart: function(e) {
VMM.TouchSlider.touchStart(e.data.element, e);
e.preventDefault();
e.stopPropagation();
return true;
},
onTouchEnd: function(e) {
e.preventDefault();
e.stopPropagation();
if (VMM.TouchSlider.sliding) {

Loading…
Cancel
Save