1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:05:56 +00:00

various minor updates re: icons

This commit is contained in:
Andrew Dolgov
2018-12-05 16:48:29 +03:00
parent b16c57d29c
commit f3e6e12d46
9 changed files with 26 additions and 13 deletions

View File

@@ -23,13 +23,13 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
domConstruct.place(param, tnode.rowNode, 'next');
}
if (this.model.store.getValue(args.item, 'id') != 'root') {
const img = dojo.doc.createElement('img');
img.src ='images/filter.png';
img.className = 'marked-pic';
tnode._filterIconNode = img;
/* if (this.model.store.getValue(args.item, 'id') != 'root') {
const i = dojo.doc.createElement('i');
i.className = 'material-icons filter';
i.innerHTML = 'label';
tnode._filterIconNode = i;
domConstruct.place(tnode._filterIconNode, tnode.labelNode, 'before');
}
} */
return tnode;
},