Commit 4762f93df7452fc73bd8f01510b3e9df9e8ca6cf
1 parent
40fcadd2
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
1 additions
and
5 deletions
Show diff stats
classesjs/classe_eventos.js
... | ... | @@ -220,6 +220,7 @@ i3GEO.eventos = { |
220 | 220 | Executa as funções armazenadas em MOUSECLIQUE. |
221 | 221 | */ |
222 | 222 | mousecliqueMapa: function(){ |
223 | + alert("oi"); | |
223 | 224 | i3GEO.eventos.executaEventos(this.MOUSECLIQUE); |
224 | 225 | }, |
225 | 226 | /* |
... | ... | @@ -505,12 +506,8 @@ i3GEO.eventos = { |
505 | 506 | {i3GEO.eventos.mousedownMapa();} |
506 | 507 | }; |
507 | 508 | docMapa.onclick = function(exy){ |
508 | - | |
509 | - //if(typeof(console) !== 'undefined'){console.error("click");} | |
510 | 509 | if(!i3GEO.eventos.botaoDireita(exy)) |
511 | 510 | {i3GEO.eventos.mousecliqueMapa();} |
512 | - //ativa o clique sobre o mapa (o evento click e desativado no evento moveend da interface | |
513 | - //i3GEO.eventos.cliquePerm.status = true; | |
514 | 511 | }; |
515 | 512 | docMapa.onmouseup = function(exy){ |
516 | 513 | //if(typeof(console) !== 'undefined'){console.error("up");} |
... | ... | @@ -546,7 +543,6 @@ i3GEO.eventos = { |
546 | 543 | ixg,ixm,ixs,iyg,iym,iys |
547 | 544 | */ |
548 | 545 | cliqueCapturaPt: function(ixg,ixm,ixs,iyg,iym,iys){ |
549 | - alert("oi") | |
550 | 546 | if(typeof(console) !== 'undefined'){console.info("i3GEO.eventos.cliqueCapturaPt()");} |
551 | 547 | var x,y,doc = document; |
552 | 548 | if(arguments.length === 0){ | ... | ... |