We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67dd63c commit 9f38cedCopy full SHA for 9f38ced
MUSICPLAYER.html
@@ -342,7 +342,7 @@
342
const brokenButtonId = 'brokenRedirect';
343
if (! document.querySelector(`#${brokenButtonId}`)) {
344
var a = document.createElement('button');
345
- a.click = () => {window.open(window.location.pathname.replace('/main/','quickpatch-till-music-is-live'), '_self');};
+ a.onclick = () => {window.open(window.location.pathname.replace('/main/','/quickpatch-till-music-is-live/'), '_self');};
346
a.innerText = `Errors while attempting to retreive the audio src key. Click here to use the other version of the app.`;
347
a.id = 'brokenRedirect';
348
document.body.insertBefore(a, document.body.firstChild);
0 commit comments