Commit 7acdc8fcc34cc8ce485ea86007208600abd02661
1 parent
6af44ced
Exists in
master
and in
7 other branches
Corrige a função disparada quando o usuário escolhe um tema no gráfico interativo
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
ferramentas/graficointerativo1/index.js
... | ... | @@ -661,6 +661,7 @@ i3GEOF.graficointerativo1 = |
661 | 661 | $i(idjanela + "i3GEOgraficointerativo1ComboTemas").style.display = "block"; |
662 | 662 | if ($i(idjanela + "i3GEOgraficointerativo1ComboTemasId")) { |
663 | 663 | $i(idjanela + "i3GEOgraficointerativo1ComboTemasId").onchange = function() { |
664 | + i3GEOF.graficointerativo1.propJanelas[idjanela].dadosComboItens = ""; | |
664 | 665 | var tema = $i(idjanela + "i3GEOgraficointerativo1ComboTemasId").value; |
665 | 666 | i3GEO.mapa.ativaTema(tema); |
666 | 667 | i3GEOF.graficointerativo1.propJanelas[idjanela].tema = tema; | ... | ... |