FIX: j keyboard shortcut skipping first post in topic.

This commit is contained in:
Guo Xiang Tan 2016-03-01 16:47:47 +08:00
parent f0653563ee
commit 39c3f06379

View file

@ -291,7 +291,7 @@ export default {
index = 0;
$articles.each(function() {
const top = $(this).position().top;
if (top > scrollTop) {
if (top >= scrollTop) {
return false;
}
index += 1;