summaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-12-03 18:35:42 -0500
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-12-03 18:35:42 -0500
commit5617911644bf85718430bb096c4ae9a0a0e8c75c (patch)
tree1e6565678ee973b3ba18fa2376a5e8ec56971b13 /p/scripts
parent93af0cf61e6e9368888eedb2d2e36397da3f87bd (diff)
Revert "Fix behavior when marking an article as unread"
This reverts commit 93af0cf61e6e9368888eedb2d2e36397da3f87bd.
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/main.js24
1 files changed, 11 insertions, 13 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index 32cf55a3c..19eba206d 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -144,7 +144,6 @@ function mark_read(active, only_not_read) {
inc = 0;
if (active.hasClass("not_read")) {
active.removeClass("not_read");
- hide_article(active);
inc--;
} else if (only_not_read !== true || active.hasClass("not_read")) {
active.addClass("not_read");
@@ -232,7 +231,14 @@ function toggleContent(new_active, old_active) {
}
old_active.removeClass("active current");
new_active.addClass("current");
- hide_article(old_active);
+ if (context['auto_remove_article'] && !old_active.hasClass('not_read')) {
+ var p = old_active.prev();
+ var n = old_active.next();
+ if (p.hasClass('day') && n.hasClass('day')) {
+ p.remove();
+ }
+ old_active.remove();
+ }
} else {
new_active.toggleClass('active');
}
@@ -277,17 +283,6 @@ function toggleContent(new_active, old_active) {
}
}
-function hide_article(article) {
- if (context['auto_remove_article'] && !article.hasClass('not_read')) {
- var p = article.prev();
- var n = article.next();
- if (p.hasClass('day') && n.hasClass('day')) {
- p.remove();
- }
- article.remove();
- }
-}
-
function prev_entry() {
var old_active = $(".flux.current"),
new_active = old_active.length === 0 ? $(".flux:last") : old_active.prevAll(".flux:first");
@@ -695,6 +690,9 @@ function init_stream(divStream) {
divStream.on('click', '.flux a.read', function () {
var active = $(this).parents(".flux");
mark_read(active, false);
+ if (context['auto_remove_article']) {
+ active.remove();
+ }
return false;
});