aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 21:10:09 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 21:10:09 +0200
commitaffa1cd6d40444cdf90233f97c1d863f74419a21 (patch)
treec9715282c7a29bcbd4b120076b675dea009eb31e /pyaggr3g470r
parentUsing date CSS class where appropriate. (diff)
downloadnewspipe-affa1cd6d40444cdf90233f97c1d863f74419a21.tar.gz
newspipe-affa1cd6d40444cdf90233f97c1d863f74419a21.tar.bz2
newspipe-affa1cd6d40444cdf90233f97c1d863f74419a21.zip
Minor improvements to the JS scripts.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/static/js/articles.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/pyaggr3g470r/static/js/articles.js b/pyaggr3g470r/static/js/articles.js
index bd4e9627..4f27b802 100644
--- a/pyaggr3g470r/static/js/articles.js
+++ b/pyaggr3g470r/static/js/articles.js
@@ -51,12 +51,20 @@ if (typeof jQuery === 'undefined') { throw new Error('Requires jQuery') }
if (filter == "unread") {
$(this).parent().parent().parent().remove();
$("#total-unread").text(parseInt($("#total-unread").text()) - 1);
- $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1);
+ if (parseInt($("#unread-"+feed_id).text()) == 1) {
+ $("#unread-"+feed_id).remove();
+ } else {
+ $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1);
+ }
}
else {
// here, filter == "all"
$(this).removeClass('glyphicon-check').addClass('glyphicon-unchecked');
- $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1);
+ if (parseInt($("#unread-"+feed_id).text()) == 1) {
+ $("#unread-"+feed_id).remove();
+ } else {
+ $("#unread-"+feed_id).text(parseInt($("#unread-"+feed_id).text()) - 1);
+ }
}
}
bgstack15