aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-17 17:28:10 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-05-17 17:28:10 +0200
commit136ce735f5473bad2e102bb66e8c1c4c75ebc0c9 (patch)
tree0b82c0df434c4ac77293d49bfeae8cfb203cbbdf /pyaggr3g470r
parentThe line of an unread articles is removed from the table when it is opened in... (diff)
downloadnewspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.tar.gz
newspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.tar.bz2
newspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.zip
Removed debug message.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/static/js/articles.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyaggr3g470r/static/js/articles.js b/pyaggr3g470r/static/js/articles.js
index fe7f0cba..bb31f6d8 100644
--- a/pyaggr3g470r/static/js/articles.js
+++ b/pyaggr3g470r/static/js/articles.js
@@ -28,7 +28,6 @@ if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') }
$('.open-article').on('click', function(e) {
var feed_id = $(this).parent().parent().attr("data-feed");
var filter = $('#filters').attr("data-filter");
- console.log("unread");
if (filter == "unread") {
$(this).parent().parent().remove();
$("#total-unread").text(parseInt($("#total-unread").text()) - 1);
bgstack15