Parcourir la source

Disable touch move events when `config.draggable` is false. (#359)

pull/132/merge
Alan Zhang il y a 7 ans
committed by Matthew Petroff
Parent
révision
4a9206d6a9
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  1. +4
    -0
      src/js/pannellum.js

+ 4
- 0
src/js/pannellum.js Voir le fichier

@@ -803,6 +803,10 @@ function onDocumentTouchStart(event) {
* @param {TouchEvent} event - Document touch move event.
*/
function onDocumentTouchMove(event) {
if (!config.draggable) {
return;
}

// Override default action
event.preventDefault();
if (loaded) {


Chargement…
Annuler
Enregistrer