Compare commits
No commits in common. "36a095145a5aafdde4619a94578b2941ff72394f" and "8a4c7c9113e2a20fe39464ae87408244d954c17c" have entirely different histories.
36a095145a
...
8a4c7c9113
1 changed files with 1 additions and 3 deletions
|
@ -70,12 +70,10 @@ document.addEventListener("DOMContentLoaded", function () {
|
||||||
hideContent();
|
hideContent();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Hide any button that has a text starting with "Check" or "Previous page"
|
// Hide any button that has a text starting with "Check"
|
||||||
$("button").each(function () {
|
$("button").each(function () {
|
||||||
if ($(this).text().startsWith("Check")) {
|
if ($(this).text().startsWith("Check")) {
|
||||||
$(this).hide();
|
$(this).hide();
|
||||||
} else if ($(this).text().startsWith("Previous page")) {
|
|
||||||
$(this).hide();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue