Commit 80caa229eb5cca5d0e2b6cc6e74389ac78c7e9bf
1 parent
c5af0790
Exists in
master
and in
7 other branches
--no commit message
Showing
2 changed files
with
5 additions
and
4 deletions
Show diff stats
ferramentas/carregakml/index.js
... | ... | @@ -119,7 +119,7 @@ i3GEOF.carregakml = { |
119 | 119 | html:function(){ |
120 | 120 | var ins = '' + |
121 | 121 | '<p class="paragrafo" >'+$trad('insereKml',i3GEOF.carregakml.dicionario)+':<br><br>' + |
122 | - $inputText("","","i3GEOcarregakmlurl","",40,"") + | |
122 | + $inputText("","","i3GEOcarregakmlurl","",30,"") + | |
123 | 123 | '<br><br>' + |
124 | 124 | '<div id="i3GEOcarregakmlCombo" style="left:1px;display:block;width:315px;text-align:left;">' + $trad("o1") + |
125 | 125 | '</div>' + | ... | ... |
ferramentas/conectargeojson/index.js
... | ... | @@ -88,7 +88,7 @@ i3GEOF.conectargeojson = { |
88 | 88 | {i3GEO.janela.tempoMsg($trad('msgNavegador',i3GEOF.conectargeojson.dicionario));} |
89 | 89 | try{ |
90 | 90 | $i(iddiv).innerHTML = i3GEOF.conectargeojson.html(); |
91 | - var monta = function(retorno){ | |
91 | + var b,monta = function(retorno){ | |
92 | 92 | var raiz,nraiz,i,combo; |
93 | 93 | raiz = retorno.data.canais; |
94 | 94 | nraiz = raiz.length; |
... | ... | @@ -101,10 +101,11 @@ i3GEOF.conectargeojson = { |
101 | 101 | $i("i3GEOconectargeojsonCombo").innerHTML = combo; |
102 | 102 | }; |
103 | 103 | i3GEO.php.listaRSSwsARRAY(monta,"GEOJSON"); |
104 | - new YAHOO.widget.Button( | |
104 | + b = new YAHOO.widget.Button( | |
105 | 105 | "i3GEOconectargeojsonbotao1", |
106 | 106 | {onclick:{fn: i3GEOF.conectargeojson.adiciona}} |
107 | 107 | ); |
108 | + b.addClass("rodar"); | |
108 | 109 | } |
109 | 110 | catch(erro){i3GEO.janela.tempoMsg(erro);} |
110 | 111 | }, |
... | ... | @@ -120,7 +121,7 @@ i3GEOF.conectargeojson = { |
120 | 121 | html:function(){ |
121 | 122 | var ins = '' + |
122 | 123 | '<p class="paragrafo" >'+$trad('insereEndereco',i3GEOF.conectargeojson.dicionario)+'<br><br>' + |
123 | - $inputText("","","i3GEOconectargeojsonurl","",45,"") + | |
124 | + $inputText("","","i3GEOconectargeojsonurl","",40,"") + | |
124 | 125 | '<br><br>' + |
125 | 126 | '<div id="i3GEOconectargeojsonCombo" style="left:1px;display:block;width:315px;text-align:left;">' + $trad("o1") + |
126 | 127 | '</div>' + | ... | ... |