Commit 89b1ea06dd7f26f9d2ab9f64f3dfadd3813b4456
1 parent
41a34b26
Exists in
master
and in
7 other branches
-
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
classesjs/classe_eventos.js
... | ... | @@ -529,12 +529,14 @@ i3GEO.eventos = |
529 | 529 | docMapa.onmouseup = function(exy) { |
530 | 530 | i3GEO.eventos.mouseupMapa(exy); |
531 | 531 | }; |
532 | + /* | |
532 | 533 | docMapa.ontouchend = function(exy) { |
533 | 534 | if (i3GEO.eventos.cliquePerm.status === true) { |
534 | 535 | i3GEO.eventos.mouseupMapa(exy); |
535 | 536 | } |
536 | 537 | i3GEO.eventos.cliquePerm.status = true; |
537 | 538 | }; |
539 | + */ | |
538 | 540 | docMapa.ontouchmove = function(exy) { |
539 | 541 | i3GEO.eventos.cliquePerm.status = false; |
540 | 542 | }; | ... | ... |
classesjs/classe_interface.js