]> git.wh0rd.org Git - tt-rss.git/commitdiff
digest: fix counter vertical offset
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Mon, 14 Jan 2013 06:35:11 +0000 (10:35 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Mon, 14 Jan 2013 06:35:11 +0000 (10:35 +0400)
plugins/digest/digest.js

index a9b3508c7924a4cfd40a881e0f2840cca6fc335d..88c4d7dc9dcd5c61976d9eb14fbdfe6bede392a1 100644 (file)
@@ -417,9 +417,9 @@ function add_feed_entry(feed) {
                        feed.title;
 
                var tmp_html = "<li id=\"F-"+feed.id+"\" onclick=\"viewfeed("+feed.id+")\">" +
+                       "<div class='unread-ctr'>" + "<span class=\"unread\">" + feed.unread + "</span></div>" +
                        icon_part + title +
-                       "<div class='unread-ctr'>" + "<span class=\"unread\">" + feed.unread + "</span>" +
-                       "</div>" + "</li>";
+                       "</li>";
 
                $("feeds-content").innerHTML += tmp_html;