summaryrefslogtreecommitdiff
path: root/js/PrefFilterTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-05 16:48:29 +0300
committerAndrew Dolgov <[email protected]>2018-12-05 16:48:29 +0300
commitf3e6e12d46da27f99aa23d86298712f339f717cb (patch)
tree8a51c7c229e950d2f1220f23b3ece6b62d3fc6ff /js/PrefFilterTree.js
parentb16c57d29c1aa304716ae524cdc74a957a50763c (diff)
various minor updates re: icons
Diffstat (limited to 'js/PrefFilterTree.js')
-rw-r--r--js/PrefFilterTree.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js
index be321fd21..f4fc8ecf2 100644
--- a/js/PrefFilterTree.js
+++ b/js/PrefFilterTree.js
@@ -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;
},