This commit is contained in:
Corbin Davenport
2022-01-23 02:31:33 -05:00
parent 4a36a24e07
commit 4ba7371e96
2 changed files with 3 additions and 3 deletions

View File

@@ -12,9 +12,9 @@ chrome.storage.local.get({
}, function (data) {
document.querySelector('#music-picker').value = data.music
if (data.musicEnabled) {
document.getElementById('music-toggle').innerText = 'Turn off music'
document.getElementById('music-toggle').innerText = 'Turn off background music'
} else {
document.getElementById('music-toggle').innerText = 'Turn on music'
document.getElementById('music-toggle').innerText = 'Turn on background music'
}
})