2024-01-31 00:12:40 +00:00
|
|
|
const post_permalinks = sessionStorage.getItem("post_permalinks").split(', ');
|
|
|
|
const current_index = post_permalinks.indexOf(`'${location.href}'`)
|
|
|
|
if (current_index > -1) {
|
|
|
|
const id_after = post_permalinks[current_index+1]
|
|
|
|
|
|
|
|
if (id_after) {
|
2024-01-31 18:52:22 +00:00
|
|
|
document.getElementById('post_navigation').classList.remove('d-none')
|
2024-01-31 00:12:40 +00:00
|
|
|
document.getElementById('post_after').href = id_after.slice(1, -1)
|
|
|
|
}
|
|
|
|
}
|