Add layout partial list.html for sequential links

Disable initial state and change innerHTML of filler sequential page links.
This commit is contained in:
John Haugabook 2024-01-25 11:54:03 -05:00 committed by GitHub
parent e6560aae60
commit 4b6b5d2156
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 8 deletions

View File

@ -16,9 +16,9 @@
{{ if $currentPage.IsMenuCurrent "docs" . }}
<!-- Add filler html and use JavaScript to put in correct links. -->
<div style="margin: {{ $verticalMargin }} 0px">
<a id="previousLink" href="PREV_LINK" style="font-size: {{ $fontSize }}">Previous - </a>
<a id="previousLink" href="javascript:void(0)" style="font-size: {{ $fontSize }}">Previous - Page</a>
<div id="pageTurnSpacer" style="display:inline; margin: 0px {{ $sideMargin }}"></div>
<a id="nextLink" href="NEXT_LINK" style="font-size: {{ $fontSize }}">Next - </a>
<a id="nextLink" href="javascript:void(0)" style="font-size: {{ $fontSize }}">Next - Page</a>
</div>
<!-- Use (1) or do not use (0) JavaScript to correct links. -->
<div id="useJS" style="display: none">1</div>
@ -50,9 +50,9 @@
{{ if $currentPage.IsMenuCurrent "docs" . }}
<!-- Add filler html and use JavaScript to put in correct links. -->
<div style="margin: {{ $verticalMargin }} 0px">
<a id="previousLink" href="PREV_LINK" style="font-size: {{ $fontSize }}">Previous - </a>
<a id="previousLink" href="javascript:void(0)" style="font-size: {{ $fontSize }}">Previous - Page</a>
<div id="pageTurnSpacer" style="display:inline; margin: 0px {{ $sideMargin }}"></div>
<a id="nextLink" href="NEXT_LINK" style="font-size: {{ $fontSize }}">Next - </a>
<a id="nextLink" href="javascript:void(0)" style="font-size: {{ $fontSize }}">Next - Page</a>
</div>
<!-- Use (1) or do not use (0) JavaScript to correct links. -->
<div id="useJS" style="display: none">1</div>
@ -135,16 +135,16 @@
previousLink.remove();
pageTurnSpacer.remove();
nextLink.href = nextHref;
nextLink.innerHTML += nextName;
nextLink.innerHTML = nextLink.innerHTML.replace("Page", nextName);
} else if (nextHref == "remove") {
previousLink.href = prevHref;
previousLink.innerHTML += prevName;
previousLink.innerHTML = previousLink.innerHTML.replace("Page", prevName);
nextLink.remove();
} else {
previousLink.href = prevHref;
previousLink.innerHTML += prevName;
previousLink.innerHTML = previousLink.innerHTML.replace("Page", prevName);
nextLink.href = nextHref;
nextLink.innerHTML += nextName;
nextLink.innerHTML = nextLink.innerHTML.replace("Page", nextName);
}
}
</script>