This commit is contained in:
Rob Garrison 2017-12-23 23:17:27 -06:00
parent fb34c3f02c
commit 1a805ee34f

View File

@ -194,7 +194,7 @@ const sorter = (() => {
const list = entry.classList;
if (!list.contains('hidden')) {
list.add(index % 2 ? 'odd' : 'even');
list.remove(index++ % 2 ? 'even' : 'odd', 'no-update');
list.remove(index++ % 2 ? 'even' : 'odd');
}
});
}