Commit b330897cc2afcf7c5c458744ae1ca1cc24c6ccfc
1 parent
e3428c1c
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
admin/js/editormapfile.js
... | ... | @@ -408,7 +408,7 @@ function montaRaizTema(no,dados) |
408 | 408 | tempNodeR.enableHighlight = false; |
409 | 409 | var conteudo = "<span style=\"cursor:pointer;\" onclick=\"editorGrupousr('"+no.data.id_tema+"','"+no.data.codigoMap+"')\" ><img style='position:relative;top:2px' src=\"../imagens/05.png\" /><i>"+ $trad("adicionaNovo",i3GEOadmin.core.dicionario) +"</i></span>"; |
410 | 410 | var d = {html:conteudo}; |
411 | - tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true); | |
411 | + tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, true,true); | |
412 | 412 | tempNode.isLeaf = true; |
413 | 413 | tempNode.enableHighlight = false; |
414 | 414 | } |
... | ... | @@ -437,7 +437,7 @@ function montaRaizTema(no,dados) |
437 | 437 | //adiciona a lista de layers no no |
438 | 438 | for (var i=0, j=dados.layers.length; i<j; i++) |
439 | 439 | { |
440 | - tempNode = new YAHOO.widget.HTMLNode(montaNoLayer(no.data.codigoMap,dados.layers[i]), tempNodeR, false,true); | |
440 | + tempNode = new YAHOO.widget.HTMLNode(montaNoLayer(no.data.codigoMap,dados.layers[i]), tempNodeR, true,true); | |
441 | 441 | tempNode.setDynamicLoad(loadLayerData, 0); |
442 | 442 | tempNode.isLeaf = false; |
443 | 443 | tempNode.enableHighlight = false; | ... | ... |