aboutsummaryrefslogtreecommitdiff
path: root/ext/mixed
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mixed')
-rw-r--r--ext/mixed/img/entry-current.pngbin0 -> 743 bytes
-rw-r--r--ext/mixed/js/display.js7
2 files changed, 5 insertions, 2 deletions
diff --git a/ext/mixed/img/entry-current.png b/ext/mixed/img/entry-current.png
new file mode 100644
index 00000000..bab7cc9b
--- /dev/null
+++ b/ext/mixed/img/entry-current.png
Binary files differ
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js
index 11df7208..7b8f0aae 100644
--- a/ext/mixed/js/display.js
+++ b/ext/mixed/js/display.js
@@ -167,13 +167,16 @@ class Display {
return;
}
+ $('.current').hide().eq(index).show();
+
const body = $('body').stop();
const entry = $('.entry').eq(index);
+ const target = index === 0 ? 0 : entry.offset().top;
if (smooth) {
- body.animate({scrollTop: entry.offset().top}, 200);
+ body.animate({scrollTop: target}, 200);
} else {
- body.scrollTop(entry.offset().top);
+ body.scrollTop(target);
}
this.index = index;