From 3e3cf5867ab1e6afff432a1daabf999d2eac246e Mon Sep 17 00:00:00 2001 From: Florrie Date: Mon, 29 Jun 2020 15:35:29 -0300 Subject: fix random links bug caused by changes this also adds a new track "Friendship Aneurysm" to Squiddles :P --- client.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'client.js') diff --git a/client.js b/client.js index ffdab814..1ae0a2d0 100644 --- a/client.js +++ b/client.js @@ -10,6 +10,15 @@ const fandomAlbumData = albumData.filter(album => album.isFanon); const artistNames = artistData.filter(artist => !artist.alias).map(artist => artist.name); const allTracks = C.getAllTracks(albumData); +function rebase(href) { + const relative = document.documentElement.dataset.rebase; + if (relative) { + return relative + "/" + href; + } else { + return href; + } +} + function pick(array) { return array[Math.floor(Math.random() * array.length)]; } @@ -20,15 +29,15 @@ function getAlbum(el) { } function openAlbum(album) { - location.href = `${C.ALBUM_DIRECTORY}/${album.directory}/index.html`; + location.href = rebase(`${C.ALBUM_DIRECTORY}/${album.directory}/index.html`); } function openTrack(track) { - location.href = `${C.TRACK_DIRECTORY}/${track.directory}/index.html`; + location.href = rebase(`${C.TRACK_DIRECTORY}/${track.directory}/index.html`); } function openArtist(artist) { - location.href = `${C.ARTIST_DIRECTORY}/${C.getArtistDirectory(artist)}/index.html`; + location.href = rebase(`${C.ARTIST_DIRECTORY}/${C.getArtistDirectory(artist)}/index.html`); } for (const a of document.body.querySelectorAll('[data-random]')) { -- cgit 1.3.0-6-gf8a5