Commit 72a1106d747931881c17966e3cababe4895570cd
1 parent
bd0eb276
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
classesjs/classe_eventos.js
... | ... | @@ -575,9 +575,11 @@ i3GEO.eventos = |
575 | 575 | i3GEO.eventos.mouseupMapa(exy); |
576 | 576 | }; |
577 | 577 | docMapa.ontouchmove = function(exy) { |
578 | - console.error(exy) | |
579 | 578 | i3GEO.eventos.cliquePerm.status = false; |
580 | 579 | }; |
580 | + docMapa.ontouchend = function(exy) { | |
581 | + console.warn(exy) | |
582 | + }; | |
581 | 583 | }, |
582 | 584 | /** |
583 | 585 | * Retorna true se o botão da direita foi utilizado no evento do mouse | ... | ... |