1
0
Fork 0
forked from 0x2620/oxjs

fix colored tree list icons in doc panel

This commit is contained in:
rolux 2012-12-29 16:13:07 +01:00
commit fe32615c6b
2 changed files with 2 additions and 2 deletions

View file

@ -165,7 +165,7 @@ Ox.Theme = (function() {
that.getColorImage = function(name, value, tooltip) {
return (tooltip ? Ox.Element({element: '<img>', tooltip: tooltip}) : $('<img>'))
.addClass('OxColor OxColorName')
.attr({src: Ox.UI.getImageURL(name, null, value)})
.attr({src: Ox.UI.getImageURL(name, value)})
.data({OxColor: value, OxImage: name});
};