This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/view/script.js
2020-03-02 17:12:43 +00:00

18 lines
508 B
JavaScript

document.addEventListener('DOMContentLoaded', () => {
if(document.location.hash.length > 3) {
var query = document.location.hash.substring(1);
$('LINK#prevlink').attr('href', function(i, attr) {
return attr + '?' + query;
});
$('LINK#nextlink').attr('href', function(i, attr) {
return attr + '?' + query;
});
$('A#prevlink').attr('href', function(i, attr) {
return attr + '?' + query;
});
$('A#nextlink').attr('href', function(i, attr) {
return attr + '?' + query;
});
}
});