summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-11 00:19:15 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-11 00:19:15 +0200
commit5428fc01006eeae43249800f68e19107e4d3d870 (patch)
tree4824f8abb50d77932e5dd12da3151829814e056e /js
parentfb8f2c25502f4ad708cf85f239570f340a64c721 (diff)
fixed bug that would cause the itemheader to disappear when a different feed is loaded
Diffstat (limited to 'js')
-rw-r--r--js/news.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/news.js b/js/news.js
index 8ff46ed82..ebbf126a1 100644
--- a/js/news.js
+++ b/js/news.js
@@ -206,7 +206,7 @@ News={
var rightcontent = $('div.rightcontent');
rightcontent.empty();
rightcontent.attr('data-id', feedid);
- rightcontent.html(jsondata.data.part_items);
+ rightcontent.html(jsondata.data.items_header + jsondata.data.part_items);
$('li#selected_feed').attr('id', '');
$('li.feed[data-id="' + feedid + '"]').attr('id', 'selected_feed');