Commit 2783d0edaa76afca7442575c1dd994f465913b23
1 parent
31b48821
Exists in
master
and in
7 other branches
Conversão da ferramenta Centro de Massa para Bootstrap
Showing
58 changed files
with
36 additions
and
31 deletions
Show diff stats
admin/admin.db
No preview for this file type
ferramentas/centromassa/index.js
... | ... | @@ -109,7 +109,7 @@ i3GEOF.centromassa = { |
109 | 109 | }; |
110 | 110 | janela = i3GEO.janela.cria( |
111 | 111 | "400px", |
112 | - "150px", | |
112 | + "250px", | |
113 | 113 | "", |
114 | 114 | "", |
115 | 115 | "", |
... | ... | @@ -147,11 +147,6 @@ i3GEOF.centromassa = { |
147 | 147 | }, |
148 | 148 | t2: function(){ |
149 | 149 | i3GEO.util.proximoAnterior("i3GEOF.centromassa.t1()","","","i3GEOF.centromassa.t2","i3GEOcentromassaresultado",true,"i3GEOF.centromassa_rodape"); |
150 | - var b = new YAHOO.widget.Button( | |
151 | - "i3GEOcentromassabotao1", | |
152 | - {onclick:{fn: i3GEOF.centromassa.calcula}} | |
153 | - ); | |
154 | - b.addClass("rodar"); | |
155 | 150 | }, |
156 | 151 | /* |
157 | 152 | Function: calcula |
... | ... | @@ -230,7 +225,10 @@ i3GEOF.centromassa = { |
230 | 225 | "", |
231 | 226 | false, |
232 | 227 | "pontos", |
233 | - " " | |
228 | + " ", | |
229 | + false, | |
230 | + true, | |
231 | + "form-control comboTema" | |
234 | 232 | ); |
235 | 233 | }, |
236 | 234 | /* |
... | ... | @@ -251,7 +249,11 @@ i3GEOF.centromassa = { |
251 | 249 | $i("i3GEOondeItens").innerHTML = retorno.dados; |
252 | 250 | $i("i3GEOondeItens").style.display = "block"; |
253 | 251 | }, |
254 | - "i3GEOondeItens" | |
252 | + "i3GEOondeItens", | |
253 | + "", | |
254 | + "", | |
255 | + "", | |
256 | + "form-control comboTema" | |
255 | 257 | ); |
256 | 258 | } |
257 | 259 | }; |
258 | 260 | \ No newline at end of file | ... | ... |
ferramentas/centromassa/template_mst.html
1 | -<div style='padding: 5px; background-color: #F2F2F2; top: 0px; left: 0px; display: block; width: 98%;' id='i3GEOcentromassaresultado'> | |
2 | -<div id='i3GEOFgradeDePontost0'> | |
3 | - <img class='i3GeoExemploImg' | |
4 | - src='{{{locaplic}}}/ferramentas/centromassa/exemplo.png'/> | |
5 | - <p class='paragrafo'>{{{ajuda}}}</p> | |
6 | - <p class='paragrafo'>{{{ajuda2}}}</p> | |
7 | -</div> | |
8 | -<div id='i3GEOF.centromassa.t1'> | |
9 | - <p class='paragrafo'> | |
10 | - {{{selecionaTema}}}</p> | |
11 | - <div class='styled-select' id='i3GEOcentromassaDivPontos'></div> | |
12 | - <br> | |
13 | - <p class='paragrafo'> | |
14 | - {{{selecionaItem}}}</p> | |
15 | - <div id='i3GEOondeItens' class='styled-select'></div> | |
16 | -</div> | |
17 | -<div id='i3GEOF.centromassa.t2'> | |
18 | - <p class='paragrafo'> | |
19 | - {{{ajuda3}}} <br> | |
20 | - <br> | |
21 | - <input id='i3GEOcentromassabotao1' type='button' value='{{{calcula}}}'/></div> | |
22 | -</div> | |
23 | -<div style='top: 10px; left: 0px; display: block; width: 98%; color: red' id='i3GEOcentromassafim'></div> | |
24 | 1 | \ No newline at end of file |
2 | +<div class='container-fluid' id='i3GEOcentromassaresultado'> | |
3 | + <div id='i3GEOFgradeDePontost0'> | |
4 | + <img class="img-rounded pull-left" style="margin: 5px; width: 40px;" src='{{{locaplic}}}/ferramentas/centromassa/exemplo.png' /> | |
5 | + <h5>{{{ajuda}}}</h5> | |
6 | + <h5>{{{ajuda2}}}</h5> | |
7 | + </div> | |
8 | + <div id='i3GEOF.centromassa.t1'> | |
9 | + <div style="width: 100%;" class='form-group label-fixed condensed'> | |
10 | + <label class="control-label" for="">{{{selecionaTema}}}</label> | |
11 | + <div style="width: 100%;" class="input-group"> | |
12 | + <div id='i3GEOcentromassaDivPontos'></div> | |
13 | + </div> | |
14 | + </div> | |
15 | + <div style="width: 100%;" class='form-group label-fixed condensed'> | |
16 | + <label class="control-label" for="">{{{selecionaItem}}}</label> | |
17 | + <div style="width: 100%;" class="input-group"> | |
18 | + <div id='i3GEOondeItens'></div> | |
19 | + </div> | |
20 | + </div> | |
21 | + </div> | |
22 | + <div id='i3GEOF.centromassa.t2'> | |
23 | + <h5>{{{ajuda3}}}</h5> | |
24 | + <button onclick=" i3GEOF.centromassa.calcula()" class='btn btn-primary btn-sm btn-raised'>{{{calcula}}}</button> | |
25 | + <h5 id='i3GEOcentromassafim'></h5> | |
26 | + </div> | |
27 | +</div> | |
25 | 28 | \ No newline at end of file | ... | ... |
pacotes/yui290/build/container/container_compacto.js
100644 → 100755
pacotes/yui290/build/container/container_core_compacto.js
100644 → 100755
pacotes/yui290/build/utilities/utilities_compacto.js
100644 → 100755