remove unsemantic strong tag from feed title

This commit is contained in:
Jan-Christoph Borchardt 2013-09-22 14:51:54 +02:00
parent dab5c1895e
commit 4f08ae7f46

View file

@ -179,9 +179,7 @@ App.prototype.populateList = function() {
var article = this.unread_articles[i];
html_str += "<li"+ (article.unread ? " class='unread'" : "") +">";
html_str += "<a href='#full-"+i+"'>";
html_str += "<p class='title'>";
html_str += "<strong>" + article.feed_title + "</strong>";
html_str += "</p>";
html_str += "<p class='title'>" + article.feed_title + "</p>";
html_str += "<h2>" + article.title + "</h2>";
if(article.excerpt) html_str += "<p class='excerpt'>" + article.excerpt + "</p>";
html_str += "</a></li>";