If anyone has used jsTree in chrome and had a similar issue please let me know. It doesn't break in IE (first time for everything) nor in FF. Basically, when I mouse over an icon it changes, but not with any regularity, some times I mouse out and stays the same (incorrect) and when I mouse over it again it changes correctly. I'm using a sprite map and my type definitions look like so:
$(...).tree({
types : {
'default': { icon: { image: spritePath} },
'Type1': { icon: { position: '-42px -153px'} },
'Type2': { icon: { position: '-28px -153px'} },
'Type3': { icon: { position: '0px -153px'} },
'Type4': { icon: { position: '-14px -153px'} }
}
});