Explorar el Código

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

pull/132/merge
Alan Zhang hace 7 años
committed by Matthew Petroff
padre
commit
4a9206d6a9
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/js/pannellum.js

+ 4
- 0
src/js/pannellum.js Ver fichero

@@ -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) {


Cargando…
Cancelar
Guardar