FeedTree: fix initial src of loading node

This commit is contained in:
Andrew Dolgov 2013-03-21 14:13:13 +04:00
parent 94a567df84
commit 84b48db4a7

View file

@ -165,6 +165,7 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
if (id.match("CAT:")) {
loading = dojo.doc.createElement('img');
loading.className = 'loadingNode';
loading.src = 'images/blank_icon.gif';
dojo.place(loading, tnode.labelNode, 'after');
tnode.loadingNode = loading;
}