Commit 7d113d158ddba943c61232d2955e5b41d2139b15
1 parent
8a8a600f
Exists in
master
and in
7 other branches
Correção no ícone de + e -
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
pacotes/jsobjects/jsUI-Treeview/component.js
| ... | ... | @@ -198,15 +198,15 @@ function TreeviewPvtExpandClick(e) |
| 198 | 198 | hiddenChildren = true; |
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | - node.src = g_locaplic+"/classesjs/jsobjects" + "/jsUI-Treeview/minus.gif"; | |
| 201 | + node.src = g_locaplic+"/pacotes/jsobjects" + "/jsUI-Treeview/minus.gif"; | |
| 202 | 202 | } |
| 203 | 203 | if (!hiddenChildren) |
| 204 | - node.src = g_locaplic+"/classesjs/jsobjects" + "/jsUI-Treeview/minus.gif"; | |
| 204 | + node.src = g_locaplic+"/pacotes/jsobjects" + "/jsUI-Treeview/minus.gif"; | |
| 205 | 205 | currTree.itemExpand(this.parentNode.id); |
| 206 | 206 | } |
| 207 | 207 | else if (currSrc[1] == "minus.gif") |
| 208 | 208 | { |
| 209 | - node.src = g_locaplic+"/classesjs/jsobjects" + "/jsUI-Treeview/plus.gif"; | |
| 209 | + node.src = g_locaplic+"/pacotes/jsobjects" + "/jsUI-Treeview/plus.gif"; | |
| 210 | 210 | var allArray = getAllDescendants(node.parentNode, "UL"); |
| 211 | 211 | for (var a=0;a<allArray.length;a++) |
| 212 | 212 | { | ... | ... |