From a8fca7f07a2fd50927ee57366fa1570a606dd899 Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 28 Jul 2013 23:14:51 +0000 Subject: [PATCH] fix #1726 (when tabbing to /news for the first time, item is not selected in list) --- static/js/news.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/news.js b/static/js/news.js index 021ad1be..d58974e3 100644 --- a/static/js/news.js +++ b/static/js/news.js @@ -162,7 +162,8 @@ pandora.ui.news = function(width, height) { padding: '4px 8px 5px 8px', borderRadius: '8px', margin: '2px', - backgroundColor: item.id == pandora.user.ui.part.news + backgroundColor: (item.id == pandora.user.ui.part.news) + || (!pandora.user.ui.part.news && i == 0) ? backgroundColor : '', cursor: 'pointer' })