Ver a proveniência

Fix mouse position for iOS (fixes #668).

pull/675/merge
Matthew Petroff há 6 anos
ascendente
cometimento
d12baa08d4
1 ficheiros alterados com 3 adições e 2 eliminações
  1. +3
    -2
      src/js/pannellum.js

+ 3
- 2
src/js/pannellum.js Ver ficheiro

@@ -658,8 +658,9 @@ function aboutMessage(event) {
function mousePosition(event) {
var bounds = container.getBoundingClientRect();
var pos = {};
pos.x = event.clientX - bounds.left;
pos.y = event.clientY - bounds.top;
// pageX / pageY needed for iOS
pos.x = (event.clientX || event.pageX) - bounds.left;
pos.y = (event.clientY || event.pageY) - bounds.top;
return pos;
}



Carregando…
Cancelar
Guardar