Commit 7bc390f2da591ce54215065f0e120683666a18f7
1 parent
4c044fa9
Exists in
master
and in
7 other branches
-
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
ferramentas/animacao/index.js
... | ... | @@ -97,7 +97,7 @@ i3GEOF.animacao = { |
97 | 97 | while(n > 0){ |
98 | 98 | n -= 1; |
99 | 99 | if(camadas[n].tema !== "") |
100 | - {ins += "<tr><td><input class=inputsb style='cursor:pointer' type=checkbox value='"+camadas[n].name+"' /></td><td><span style=background:white id='i3GEOanima"+camadas[n].name+"'>"+camadas[n].tema+"</span></td></tr>";} | |
100 | + {ins += "<tr><td><input class=inputsb style='cursor:pointer' type=checkbox value='"+camadas[n].name+"' /></td><td><span id='i3GEOanima"+camadas[n].name+"'>"+camadas[n].tema+"</span></td></tr>";} | |
101 | 101 | } |
102 | 102 | ins += "</table>"; |
103 | 103 | $i("i3GEOFanimacaoLista").innerHTML = ins; |
... | ... | @@ -256,7 +256,7 @@ i3GEOF.animacao = { |
256 | 256 | n = cs.length; |
257 | 257 | while(n > 0){ |
258 | 258 | n -= 1; |
259 | - $i("i3GEOanima"+cs[n].value).style.backgroundColor = "white"; | |
259 | + $i("i3GEOanima"+cs[n].value).style.backgroundColor = ""; | |
260 | 260 | } |
261 | 261 | } |
262 | 262 | }; | ... | ... |