Commit 3598bc61c65f3e0551e54379178d909a19af1b14

Authored by Edmar Moretti
1 parent 08af06a8

--no commit message

ferramentas/heatmap/index.js
... ... @@ -200,7 +200,7 @@ i3GEOF.heatmap =
200 200 "i3GEOF.heatmap_rodape");
201 201 },
202 202 t4 : function() {
203   - var ins = "<p class='paragrafo'>" + $trad('adicionaTema', i3GEOF.heatmap.dicionario);
  203 + var b,ins = "<p class='paragrafo'>" + $trad('adicionaTema', i3GEOF.heatmap.dicionario);
204 204 ins += "<br><br><input id=i3GEOheatmapbotao1 type='button' value='" + $trad('criaCamada', i3GEOF.heatmap.dicionario) + "' />";
205 205 i3GEO.util.proximoAnterior(
206 206 "i3GEOF.heatmap.t3()",
... ... @@ -210,11 +210,12 @@ i3GEOF.heatmap =
210 210 "i3GEOheatmapresultado",
211 211 true,
212 212 "i3GEOF.heatmap_rodape");
213   - new YAHOO.widget.Button("i3GEOheatmapbotao1", {
  213 + b = new YAHOO.widget.Button("i3GEOheatmapbotao1", {
214 214 onclick : {
215 215 fn : i3GEOF.heatmap.criaheatmap
216 216 }
217 217 });
  218 + b.addClass("rodar");
218 219 },
219 220 /**
220 221 * Function: criaheatmap
... ...
ferramentas/markercluster/index.js
... ... @@ -233,7 +233,7 @@ i3GEOF.markercluster = {
233 233 i3GEOF.markercluster.comboItens();
234 234 },
235 235 t3 : function() {
236   - var ins = "<p class='paragrafo'>"
  236 + var b,ins = "<p class='paragrafo'>"
237 237 + $trad(
238 238 'adicionaTema',
239 239 i3GEOF.markercluster.dicionario);
... ... @@ -250,11 +250,12 @@ i3GEOF.markercluster = {
250 250 "i3GEOmarkerclusterresultado",
251 251 true,
252 252 "i3GEOF.markercluster_rodape");
253   - new YAHOO.widget.Button("i3GEOmarkerclusterbotao1", {
  253 + b = new YAHOO.widget.Button("i3GEOmarkerclusterbotao1", {
254 254 onclick : {
255 255 fn : i3GEOF.markercluster.criamarkercluster
256 256 }
257 257 });
  258 + b.addClass("rodar");
258 259 },
259 260 /**
260 261 * Function: criamarkercluster
... ...
ferramentas/nptpol/index.js
... ... @@ -120,7 +120,7 @@ i3GEOF.nptpol = {
120 120 i3GEO.janela.minimiza("i3GEOF.nptpol");
121 121 };
122 122 janela = i3GEO.janela.cria(
123   - "400px",
  123 + "420px",
124 124 "150px",
125 125 "",
126 126 "",
... ... @@ -169,13 +169,14 @@ i3GEOF.nptpol = {
169 169 i3GEOF.nptpol.comboTemasPoligonos();
170 170 },
171 171 t2: function(){
172   - var ins = "<p class='paragrafo'>"+$trad('adicionaTema',i3GEOF.nptpol.dicionario);
  172 + var b,ins = "<p class='paragrafo'>"+$trad('adicionaTema',i3GEOF.nptpol.dicionario);
173 173 ins += "<br><br><input id=i3GEOnptpolbotao1 type='buttom' value='"+$trad('calcula',i3GEOF.nptpol.dicionario)+"' />";
174 174 i3GEO.util.proximoAnterior("i3GEOF.nptpol.t1()","",ins,"i3GEOF.nptpol.t2","i3GEOnptpolresultado",true,"i3GEOF.nptpol_rodape");
175   - new YAHOO.widget.Button(
  175 + b = new YAHOO.widget.Button(
176 176 "i3GEOnptpolbotao1",
177 177 {onclick:{fn: i3GEOF.nptpol.calcula}}
178 178 );
  179 + b.addClass("rodar");
179 180 },
180 181 /*
181 182 Function: calcula
... ...
ferramentas/perfil/index.js
... ... @@ -100,10 +100,11 @@ i3GEOF.perfil = {
100 100 try{
101 101 $i(iddiv).innerHTML += i3GEOF.perfil.html();
102 102 i3GEOF.perfil.comboTemas();
103   - new YAHOO.widget.Button(
  103 + var b = new YAHOO.widget.Button(
104 104 "i3GEOperfilbotao1",
105 105 {onclick:{fn: i3GEOF.perfil.criaPerfil}}
106 106 );
  107 + b.addClass("rodar");
107 108 }
108 109 catch(erro){i3GEO.janela.tempoMsg(erro);}
109 110 },
... ...