does this count as vibecoding
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
f351116a90
commit
b70d04c2c7
1 changed files with 4 additions and 2 deletions
|
|
@ -1081,17 +1081,19 @@ export const visualizerSettings = {
|
|||
localStorage.setItem('butterchurn-randomize-enabled', enabled);
|
||||
},
|
||||
|
||||
CD_ALBUM_COVER_KEY: 'cd-album-cover-enabled',
|
||||
|
||||
// Spin album cover and add hole in fullscreen
|
||||
isCdAlbumCoverEnabled() {
|
||||
try {
|
||||
return localStorage.getItem('cd-album-cover-enabled') === 'true';
|
||||
return localStorage.getItem(this.CD_ALBUM_COVER_KEY) !== 'false';
|
||||
} catch {
|
||||
return true;
|
||||
}
|
||||
},
|
||||
|
||||
setCdAlbumCoverEnabled(enabled) {
|
||||
localStorage.setItem('cd-album-cover-enabled', enabled);
|
||||
localStorage.setItem(this.CD_ALBUM_COVER_KEY, enabled ? 'true' : 'false');
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue