Commit 2e618135637ecb2f6a89d4e6886f9728ed7a31ae
--no commit message
Too many changes.
To preserve performance only 100 of 105 files displayed.
... | ... | @@ -1007,7 +1007,9 @@ i3GEO.configura = { |
1007 | 1007 | titulo:$trad("d20t"), |
1008 | 1008 | funcaoonclick:function(){ |
1009 | 1009 | var temp = function(){ |
1010 | - var url = (window.location.href.split("?")); | |
1010 | + var url = window.location.href; | |
1011 | + url = url.replace("#",""); | |
1012 | + url = url.split("?"); | |
1011 | 1013 | window.location.href = url[0]+"?"+i3GEO.configura.sid; |
1012 | 1014 | }; |
1013 | 1015 | i3GEO.php.reiniciaMapa(temp); | ... | ... |
... | ... | @@ -47,19 +47,19 @@ Class: i3GEOF.carouseltemas |
47 | 47 | i3GEOF.carouseltemas = { |
48 | 48 | /* |
49 | 49 | Propriedade: numVisible |
50 | - | |
50 | + | |
51 | 51 | Número de imagens visíveis |
52 | 52 | */ |
53 | 53 | numVisible: 3, |
54 | 54 | /* |
55 | 55 | Propriedade: incluiAmpliacao |
56 | - | |
56 | + | |
57 | 57 | Inclui ou não a imagem ampliada ao passar o mouse sobre a miniatura |
58 | 58 | */ |
59 | 59 | incluiAmpliacao: true, |
60 | 60 | /* |
61 | 61 | Variavel: aguarde |
62 | - | |
62 | + | |
63 | 63 | Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela. |
64 | 64 | */ |
65 | 65 | aguarde: "", |
... | ... | @@ -71,11 +71,11 @@ i3GEOF.carouseltemas = { |
71 | 71 | }, |
72 | 72 | /* |
73 | 73 | Function: iniciaDicionario |
74 | - | |
74 | + | |
75 | 75 | Carrega o dicionário e chama a função que inicia a ferramenta |
76 | - | |
76 | + | |
77 | 77 | O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script |
78 | - */ | |
78 | + */ | |
79 | 79 | iniciaDicionario: function(){ |
80 | 80 | if(typeof(i3GEOF.carouseltemas.dicionario) === 'undefined'){ |
81 | 81 | i3GEO.util.scriptTag( |
... | ... | @@ -87,14 +87,14 @@ i3GEOF.carouseltemas = { |
87 | 87 | else{ |
88 | 88 | i3GEOF.carouseltemas.iniciaJanelaFlutuante(); |
89 | 89 | } |
90 | - }, | |
90 | + }, | |
91 | 91 | /* |
92 | 92 | Function: inicia |
93 | - | |
93 | + | |
94 | 94 | Inicia a ferramenta. É chamado por criaJanelaFlutuante |
95 | - | |
95 | + | |
96 | 96 | Parametro: |
97 | - | |
97 | + | |
98 | 98 | iddiv {String} - id do div que receberá o conteudo HTML da ferramenta |
99 | 99 | */ |
100 | 100 | inicia: function(iddiv){ |
... | ... | @@ -115,7 +115,7 @@ i3GEOF.carouseltemas = { |
115 | 115 | max; |
116 | 116 | if(retorno.data == undefined) |
117 | 117 | {return;} |
118 | - ngrupos = retorno.data.length; | |
118 | + ngrupos = retorno.data.length; | |
119 | 119 | for(i=0;i<ngrupos;i++){ |
120 | 120 | grupo = retorno.data[i]; |
121 | 121 | ntemasg = grupo.temas.length; |
... | ... | @@ -148,17 +148,17 @@ i3GEOF.carouseltemas = { |
148 | 148 | carousel.render(); |
149 | 149 | carousel.show(); |
150 | 150 | }; |
151 | - i3GEO.php.procurartemas(listaimg,""); | |
151 | + i3GEO.php.procurartemas2(listaimg,""); | |
152 | 152 | } |
153 | 153 | catch(erro){i3GEO.janela.tempoMsg(erro);} |
154 | 154 | }, |
155 | 155 | /* |
156 | 156 | Function: html |
157 | - | |
157 | + | |
158 | 158 | Gera o código html para apresentação das opções da ferramenta |
159 | - | |
159 | + | |
160 | 160 | Retorno: |
161 | - | |
161 | + | |
162 | 162 | String com o código html |
163 | 163 | */ |
164 | 164 | html:function(){ |
... | ... | @@ -169,9 +169,9 @@ i3GEOF.carouseltemas = { |
169 | 169 | }, |
170 | 170 | /* |
171 | 171 | Function: iniciaJanelaFlutuante |
172 | - | |
172 | + | |
173 | 173 | Cria a janela flutuante para controle da ferramenta. |
174 | - */ | |
174 | + */ | |
175 | 175 | iniciaJanelaFlutuante: function(){ |
176 | 176 | var janela,divid,titulo,cabecalho,minimiza; |
177 | 177 | cabecalho = function(){}; |
... | ... | @@ -201,11 +201,11 @@ i3GEOF.carouseltemas = { |
201 | 201 | }, |
202 | 202 | /* |
203 | 203 | Function: insereTema |
204 | - | |
204 | + | |
205 | 205 | Insere no mapa o tema escolhido |
206 | - | |
206 | + | |
207 | 207 | Veja: |
208 | - | |
208 | + | |
209 | 209 | <adtema> |
210 | 210 | */ |
211 | 211 | insereTema: function(codigotema){ |
... | ... | @@ -222,7 +222,7 @@ i3GEOF.carouseltemas = { |
222 | 222 | }, |
223 | 223 | /* |
224 | 224 | Function: amplia |
225 | - | |
225 | + | |
226 | 226 | Mostra a imagem ampliada |
227 | 227 | */ |
228 | 228 | amplia: function(imagem){ | ... | ... |
6.4 KB
675 Bytes
4.9 KB
618 Bytes
4.28 KB
582 Bytes
5.41 KB
634 Bytes
4.26 KB
578 Bytes
13 KB
1.6 KB
32.9 KB
2.63 KB
4.8 KB
605 Bytes
4.7 KB
10.4 KB
2.02 KB
11.3 KB
2 KB
10.1 KB
508 Bytes
21.1 KB
887 Bytes
8.13 KB
956 Bytes
8.44 KB
1009 Bytes
5.83 KB
1.01 KB
10.2 KB
608 Bytes
9.96 KB
956 Bytes
6.08 KB
729 Bytes
7.3 KB
877 Bytes
10.1 KB
1.09 KB
9.18 KB
1.13 KB
9.32 KB
1.34 KB
8.82 KB
1.36 KB
8.17 KB
1.07 KB
8.35 KB
1.27 KB
8.67 KB
878 Bytes
10.1 KB
1.29 KB
8.37 KB
1.14 KB
8.47 KB
1.1 KB
12.9 KB
1021 Bytes
8.16 KB
1.09 KB
11.2 KB
13.8 KB
1.43 KB
9.1 KB
1.16 KB
6.22 KB
1.09 KB
19.9 KB
2.11 KB
6.42 KB
756 Bytes
13.5 KB
1.87 KB
12.2 KB
678 Bytes
8.86 KB
1.15 KB
12.3 KB
1.17 KB
11.2 KB
1.68 KB
6.55 KB
952 Bytes
13.2 KB
1.85 KB
6.91 KB
718 Bytes
12 KB
2.02 KB
5.57 KB
545 Bytes
7.73 KB
1.96 KB
4.21 KB