Explorar el Código

Stop zoom movement on click / touch.

pull/169/merge
Matthew Petroff hace 8 años
padre
commit
844edc9f5e
Se han modificado 1 ficheros con 5 adiciones y 4 borrados
  1. +5
    -4
      src/js/pannellum.js

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

@@ -596,7 +596,9 @@ function onDocumentMouseDown(event) {

window.removeEventListener('deviceorientation', orientationListener);
config.roll = 0;

zoomSpeed = 0;

isUserInteracting = true;
latestInteraction = Date.now();
@@ -692,6 +694,8 @@ function onDocumentTouchStart(event) {
window.removeEventListener('deviceorientation', orientationListener);
config.roll = 0;

zoomSpeed = 0;

// Calculate touch position relative to top left of viewer container
var pos0 = mousePosition(event.targetTouches[0]);

@@ -787,9 +791,6 @@ function onDocumentPointerDown(event) {
event.targetTouches = pointerCoordinates;
onDocumentTouchStart(event);
event.preventDefault();

window.removeEventListener('deviceorientation', orientationListener);
config.roll = 0;
}
}



Cargando…
Cancelar
Guardar