Commit 0a468b84d201c04b7615e2f145bfe6205fd0f7bb
1 parent
4804d037
Exists in
master
Correção no uso da extensão geográfica #66
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
ferramentas/animagif/index.js
| ... | ... | @@ -135,7 +135,7 @@ i3GEOF.animagif = |
| 135 | 135 | temp = $i("i3GEOANIMAGIFcache").getElementsByTagName("select")[0]; |
| 136 | 136 | temp.value = camada.ferramentas.animagif.cache; |
| 137 | 137 | temp = $i("i3GEOANIMAGIFextensao"); |
| 138 | - temp.value = camada.ferramentas.animagif.extensao; | |
| 138 | + temp.value = camada.ferramentas.animagif.mapext; | |
| 139 | 139 | temp = $i("i3GEOANIMAGIFlegenda").getElementsByTagName("select")[0]; |
| 140 | 140 | temp.value = camada.ferramentas.animagif.legenda; |
| 141 | 141 | temp = $i("i3GEOANIMAGIFtransparencia").getElementsByTagName("select")[0]; |
| ... | ... | @@ -245,7 +245,7 @@ i3GEOF.animagif = |
| 245 | 245 | + "<div class='i3GeoTituloJanela'>animagif </span><a class=ajuda_usuario target=_blank href='" |
| 246 | 246 | + i3GEO.configura.locaplic |
| 247 | 247 | + "/ajuda_usuario.php?idcategoria=5&idajuda=130' ><b> </b></a></div>"; |
| 248 | - janela = i3GEO.janela.cria("380px", "320px", "", "", "", titulo, "i3GEOF.animagif", false, "hd", cabecalho, minimiza, "", true); | |
| 248 | + janela = i3GEO.janela.cria("380px", "380px", "", "", "", titulo, "i3GEOF.animagif", false, "hd", cabecalho, minimiza, "", true); | |
| 249 | 249 | divid = janela[2].id; |
| 250 | 250 | i3GEOF.animagif.aguarde = $i("i3GEOF.animagif_imagemCabecalho").style; |
| 251 | 251 | $i("i3GEOF.animagif_corpo").style.backgroundColor = "white"; |
| ... | ... | @@ -292,7 +292,7 @@ i3GEOF.animagif = |
| 292 | 292 | + $i("i3GEOANIMAGIFh").value |
| 293 | 293 | + '","cache":"' |
| 294 | 294 | + $i("i3GEOANIMAGIFcache").getElementsByTagName("select")[0].value |
| 295 | - + '","extensao":"' | |
| 295 | + + '","mapext":"' | |
| 296 | 296 | + $i("i3GEOANIMAGIFextensao").value |
| 297 | 297 | + '","legenda":"' |
| 298 | 298 | + $i("i3GEOANIMAGIFlegenda").getElementsByTagName("select")[0].value |
| ... | ... | @@ -366,7 +366,7 @@ i3GEOF.animagif = |
| 366 | 366 | temp = $i("i3GEOANIMAGIFcache").getElementsByTagName("select")[0]; |
| 367 | 367 | par += "&cache=" + temp.value; |
| 368 | 368 | temp = $i("i3GEOANIMAGIFextensao"); |
| 369 | - par += "&extensao=" + temp.value; | |
| 369 | + par += "&mapext=" + temp.value; | |
| 370 | 370 | temp = $i("i3GEOANIMAGIFlegenda").getElementsByTagName("select")[0]; |
| 371 | 371 | par += "&legenda=" + temp.value; |
| 372 | 372 | temp = $i("i3GEOANIMAGIFtransparencia").getElementsByTagName("select")[0]; |
| ... | ... | @@ -378,7 +378,7 @@ i3GEOF.animagif = |
| 378 | 378 | |
| 379 | 379 | i3GEO.janela.cria( |
| 380 | 380 | (parseInt($i("i3GEOANIMAGIFw").value,10) + 50) + "px", |
| 381 | - (parseInt($i("i3GEOANIMAGIFh").value,10) + 50) + "px", | |
| 381 | + (parseInt($i("i3GEOANIMAGIFh").value,10) + 150) + "px", | |
| 382 | 382 | i3GEO.configura.locaplic+"/ferramentas/animagif/index.php?" + par + "&tema=" + i3GEOF.animagif.tema, |
| 383 | 383 | "", |
| 384 | 384 | "", | ... | ... |