Commit e5fbe2c01a51be75ba8ed11177f0d2585782f5b3
1 parent
6c483289
Exists in
master
and in
7 other branches
-
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
ferramentas/opcoes_autoredesenha/index.js
... | ... | @@ -98,14 +98,16 @@ i3GEOF.opcoesTempo = { |
98 | 98 | inicia: function(iddiv){ |
99 | 99 | try{ |
100 | 100 | $i(iddiv).innerHTML += i3GEOF.opcoesTempo.html(); |
101 | - new YAHOO.widget.Button( | |
101 | + var b = new YAHOO.widget.Button( | |
102 | 102 | "i3GEOopcoesTempobotao1", |
103 | 103 | {onclick:{fn: i3GEOF.opcoesTempo.executa}} |
104 | 104 | ); |
105 | - new YAHOO.widget.Button( | |
105 | + b.addClass("rodar100"); | |
106 | + b = new YAHOO.widget.Button( | |
106 | 107 | "i3GEOopcoesTempobotao2", |
107 | 108 | {onclick:{fn: i3GEO.navega.autoRedesenho.desativa}} |
108 | 109 | ); |
110 | + b.addClass("rodar100"); | |
109 | 111 | } |
110 | 112 | catch(erro){i3GEO.janela.tempoMsg(erro);} |
111 | 113 | }, | ... | ... |