Compare commits
2 commits
8a4c7c9113
...
36a095145a
Author | SHA1 | Date | |
---|---|---|---|
36a095145a | |||
99bc25c237 |
1 changed files with 3 additions and 1 deletions
|
@ -70,10 +70,12 @@ document.addEventListener("DOMContentLoaded", function () {
|
||||||
hideContent();
|
hideContent();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Hide any button that has a text starting with "Check"
|
// Hide any button that has a text starting with "Check" or "Previous page"
|
||||||
$("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