experimental display of labelColorIndicators in FeedTree
This commit is contained in:
parent
f69fcbd9ab
commit
9fe80bcdad
14
FeedTree.js
14
FeedTree.js
|
@ -100,6 +100,20 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
|
|||
var id = args.item.id[0];
|
||||
var bare_id = parseInt(id.substr(id.indexOf(':')+1));
|
||||
|
||||
if (bare_id < -10) {
|
||||
var span = dojo.doc.createElement('span');
|
||||
var fg_color = args.item.fg_color[0];
|
||||
var bg_color = args.item.bg_color[0];
|
||||
|
||||
span.innerHTML = "α";
|
||||
span.className = 'labelColorIndicator';
|
||||
span.setStyle({
|
||||
color: fg_color,
|
||||
backgroundColor: bg_color});
|
||||
|
||||
dojo.place(span, tnode.iconNode, 'replace');
|
||||
}
|
||||
|
||||
if (id.match("FEED:") && bare_id > 0) {
|
||||
var menu = new dijit.Menu();
|
||||
menu.row_id = bare_id;
|
||||
|
|
|
@ -4232,9 +4232,13 @@
|
|||
|
||||
$label_id = -$line['id'] - 11;
|
||||
$count = getFeedUnread($link, $label_id);
|
||||
|
||||
array_push($cat['items'], feedlist_init_feed($link, $label_id,
|
||||
false, $count));
|
||||
|
||||
$feed = feedlist_init_feed($link, $label_id, false, $count);
|
||||
|
||||
$feed['fg_color'] = $line['fg_color'];
|
||||
$feed['bg_color'] = $line['bg_color'];
|
||||
|
||||
array_push($cat['items'], $feed);
|
||||
}
|
||||
|
||||
if ($enable_cats) {
|
||||
|
|
Loading…
Reference in New Issue