From f2a648e1b28dcc92fb52886b22a68fcb7b1f80b8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 3 Feb 2010 16:35:16 +0300 Subject: code cleanup --- feedlist.js | 37 ------------------------------------- 1 file changed, 37 deletions(-) (limited to 'feedlist.js') diff --git a/feedlist.js b/feedlist.js index d7b35ba98..b140c6d07 100644 --- a/feedlist.js +++ b/feedlist.js @@ -30,40 +30,6 @@ function viewCategory(cat) { return false; } -function printFeedEntry(id, title, row_class, unread, icon) { - - var tmp = ""; - var fctr_class = ""; - var feed_icon = ""; - - if (unread > 0) { - row_class += "Unread"; - fctr_class = "feedCtrHasUnread"; - } else { - fctr_class = "feedCtrNoUnread"; - } - - if (icon) { - feed_icon = ""; - } else { - feed_icon = ""; - } - - var link = ""+ - title + ""; - - tmp += "
  • " + feed_icon + - "" + link + ""; - - tmp += " " + - "("+unread+")"; - - tmp += "
  • "; - - return tmp; -} - function render_feedlist(data) { try { @@ -429,9 +395,6 @@ function feedlist_dragsorted(ctr) { function feedlist_init() { try { -// if (arguments.callee.done) return; -// arguments.callee.done = true; - loading_set_progress(90); debug("in feedlist init"); -- cgit v1.2.3-54-g00ecf