forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/post_navigation.js

11 lines
388 B
JavaScript
Raw Normal View History

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')
document.getElementById('post_after').href = id_after.slice(1, -1)
}
}