Skip to content

Commit

Permalink
qa: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mashb1t committed Apr 7, 2024
1 parent ef0a1c9 commit 42e301a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions javascript/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ var onAppend = function(elem, f) {
if (m.addedNodes.length) {
f(m.addedNodes);
}
})
})
});
});
observer.observe(elem, {childList: true});
}

Expand All @@ -156,7 +156,7 @@ addObserverIfDesiredNodeAvailable(".toast-wrap", function(added) {
document.getElementById("stop_button").classList.add("hidden");
});
}
})
});
});

/**
Expand Down

0 comments on commit 42e301a

Please sign in to comment.