summaryrefslogtreecommitdiff
path: root/js/PrefFilterTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-01 08:20:09 +0300
committerAndrew Dolgov <[email protected]>2018-12-01 08:20:09 +0300
commita2ef54cd927a7c1d92efc14f7178bde53c8e56cb (patch)
tree9e77c9a369e6409f0e4f7558ecc6eb5dbbddcbc3 /js/PrefFilterTree.js
parent3325979bf0193b4cd1393394ecfb3b3eebed1595 (diff)
toggleMark, togglePub: refactor implementation
shorten marked/published img CSS classes
Diffstat (limited to 'js/PrefFilterTree.js')
-rw-r--r--js/PrefFilterTree.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/PrefFilterTree.js b/js/PrefFilterTree.js
index 0a9a1fd1a..1167365d6 100644
--- a/js/PrefFilterTree.js
+++ b/js/PrefFilterTree.js
@@ -26,7 +26,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree"], functio
if (this.model.store.getValue(args.item, 'id') != 'root') {
const img = dojo.doc.createElement('img');
img.src ='images/filter.png';
- img.className = 'markedPic';
+ img.className = 'marked-pic';
tnode._filterIconNode = img;
domConstruct.place(tnode._filterIconNode, tnode.labelNode, 'before');
}