Commit 956f762249816ec1fff0eec0b12e1c9d3b50165c
1 parent
a1e93a4e
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
5 additions
and
1 deletions
Show diff stats
classesjs/classe_arvoredecamadas.js
... | ... | @@ -2088,7 +2088,11 @@ i3GEO.arvoreDeCamadas = { |
2088 | 2088 | } |
2089 | 2089 | } |
2090 | 2090 | //estilo = navm ? "text-align:left;font-size:11px;vertical-align:middle;display:table-cell;" : "text-align:left;font-size:11px;vertical-align:top;"; |
2091 | - estilo = navm ? "i3GEOarvCamTemaIE" : "i3GEOarvCamTema"; | |
2091 | + estilo = "i3GEOarvCamTema"; | |
2092 | + //verifica se a versao do IE e menor que 9 | |
2093 | + if(navm && parseInt(YAHOO.env.ua.ie,10) < 9){ | |
2094 | + estilo = "i3GEOarvCamTemaIE"; | |
2095 | + } | |
2092 | 2096 | //inicia o div |
2093 | 2097 | html = "<div onclick='i3GEO.mapa.ativaTema(\"" |
2094 | 2098 | + tema.name | ... | ... |