Commit 45e465fd1968c6204367de81f7db88fa725edda0
1 parent
63ac3292
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
classesjs/classe_eventos.js
@@ -516,6 +516,7 @@ i3GEO.eventos = | @@ -516,6 +516,7 @@ i3GEO.eventos = | ||
516 | * docMapa {DOM node} - objeto que será alvo da ativação dos cliques | 516 | * docMapa {DOM node} - objeto que será alvo da ativação dos cliques |
517 | */ | 517 | */ |
518 | ativa : function(docMapa) { | 518 | ativa : function(docMapa) { |
519 | + var nt = 0; | ||
519 | if (typeof (console) !== 'undefined') | 520 | if (typeof (console) !== 'undefined') |
520 | console.info("i3GEO.eventos.ativa()"); | 521 | console.info("i3GEO.eventos.ativa()"); |
521 | 522 | ||
@@ -575,11 +576,12 @@ i3GEO.eventos = | @@ -575,11 +576,12 @@ i3GEO.eventos = | ||
575 | i3GEO.eventos.mouseupMapa(exy); | 576 | i3GEO.eventos.mouseupMapa(exy); |
576 | }; | 577 | }; |
577 | docMapa.ontouchmove = function(exy) { | 578 | docMapa.ontouchmove = function(exy) { |
578 | - console.warn(exy) | 579 | + nt++; |
580 | + console.info(a) | ||
579 | i3GEO.eventos.cliquePerm.status = false; | 581 | i3GEO.eventos.cliquePerm.status = false; |
580 | }; | 582 | }; |
581 | docMapa.ontouchend = function(exy) { | 583 | docMapa.ontouchend = function(exy) { |
582 | - //console.warn(exy) | 584 | + nt = 0; |
583 | }; | 585 | }; |
584 | }, | 586 | }, |
585 | /** | 587 | /** |