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,12 +529,14 @@ i3GEO.eventos = | ||
529 | docMapa.onmouseup = function(exy) { | 529 | docMapa.onmouseup = function(exy) { |
530 | i3GEO.eventos.mouseupMapa(exy); | 530 | i3GEO.eventos.mouseupMapa(exy); |
531 | }; | 531 | }; |
532 | + /* | ||
532 | docMapa.ontouchend = function(exy) { | 533 | docMapa.ontouchend = function(exy) { |
533 | if (i3GEO.eventos.cliquePerm.status === true) { | 534 | if (i3GEO.eventos.cliquePerm.status === true) { |
534 | i3GEO.eventos.mouseupMapa(exy); | 535 | i3GEO.eventos.mouseupMapa(exy); |
535 | } | 536 | } |
536 | i3GEO.eventos.cliquePerm.status = true; | 537 | i3GEO.eventos.cliquePerm.status = true; |
537 | }; | 538 | }; |
539 | + */ | ||
538 | docMapa.ontouchmove = function(exy) { | 540 | docMapa.ontouchmove = function(exy) { |
539 | i3GEO.eventos.cliquePerm.status = false; | 541 | i3GEO.eventos.cliquePerm.status = false; |
540 | }; | 542 | }; |
classesjs/classe_interface.js
@@ -2013,8 +2013,8 @@ i3GEO.Interface = { | @@ -2013,8 +2013,8 @@ i3GEO.Interface = { | ||
2013 | "touchend", | 2013 | "touchend", |
2014 | i3geoOL, | 2014 | i3geoOL, |
2015 | function(e) { | 2015 | function(e) { |
2016 | - //calcCoord(e); | ||
2017 | - //e.preventDefault(); | 2016 | + calcCoord(e); |
2017 | + e.preventDefault(); | ||
2018 | }); | 2018 | }); |
2019 | }, | 2019 | }, |
2020 | /** | 2020 | /** |