mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 00:28:23 -05:00
8 lines
257 B
JavaScript
8 lines
257 B
JavaScript
for (let select of document.querySelectorAll('.manga-sort-select')) {
|
|
select.addEventListener('change', function(evt) {
|
|
const url = new URL(window.location.href)
|
|
url.searchParams.set('s', this.value)
|
|
url.hash = 'listing'
|
|
window.location = url
|
|
})
|
|
} |