diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-17 17:28:10 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-05-17 17:28:10 +0200 |
commit | 136ce735f5473bad2e102bb66e8c1c4c75ebc0c9 (patch) | |
tree | 0b82c0df434c4ac77293d49bfeae8cfb203cbbdf /pyaggr3g470r/static/js/articles.js | |
parent | The line of an unread articles is removed from the table when it is opened in... (diff) | |
download | newspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.tar.gz newspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.tar.bz2 newspipe-136ce735f5473bad2e102bb66e8c1c4c75ebc0c9.zip |
Removed debug message.
Diffstat (limited to 'pyaggr3g470r/static/js/articles.js')
-rw-r--r-- | pyaggr3g470r/static/js/articles.js | 1 |
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); |