Random cleanup

This commit is contained in:
Toby Zerner
2015-07-22 09:57:25 +09:30
parent e82a50e53b
commit e1a51f095f
3 changed files with 6 additions and 6 deletions

View File

@ -338,7 +338,7 @@ class PostStream extends mixin(Component, evented) {
if (start < this.visibleStart || end > this.visibleEnd) return;
const anchorIndex = backwards ? this.visibleEnd - 1 : this.visibleStart;
anchorScroll(`.PostStream-item[data-index=${anchorIndex}]`, () => m.redraw(true));
anchorScroll(`.PostStream-item[data-index="${anchorIndex}"]`, () => m.redraw(true));
this.unpause();
};