0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Not a collection.

This commit is contained in:
David Bolack
2024-09-07 20:16:16 -05:00
parent 3b0028da69
commit 0f8461ced6

View File

@@ -12,8 +12,8 @@ const walkPages = (iframeDocument)=>{
const pages = iframeDocument.querySelectorAll('.page');
_.each(pages, (page)=>{
current++;
const doSkip = (page.querySelector('.skipCounting').length > 0);
const doReset = (page.querySelector('.resetCounting').length > 0);
const doSkip = (page.querySelector('.skipCounting') > 0);
const doReset = (page.querySelector('.resetCounting') > 0);
if(doReset) {
reset = current - 1;
skip = 0;