Commit 89b1ea06dd7f26f9d2ab9f64f3dfadd3813b4456

Authored by Edmar Moretti
1 parent 41a34b26

-

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
... ... @@ -2013,8 +2013,8 @@ i3GEO.Interface = {
2013 2013 "touchend",
2014 2014 i3geoOL,
2015 2015 function(e) {
2016   - //calcCoord(e);
2017   - //e.preventDefault();
  2016 + calcCoord(e);
  2017 + e.preventDefault();
2018 2018 });
2019 2019 },
2020 2020 /**
... ...