Change }else to } else

This commit is contained in:
Amaru8 2022-04-30 21:28:18 +02:00
parent 9c85fafd1d
commit 422c869568
11 changed files with 24 additions and 24 deletions

View file

@ -253,7 +253,7 @@ function simulateGamepad () {
// sounds.Hover.play()
// if (intTabIndex <= 0) {
// intTabIndex = 0
// }else{
// } else{
// intTabIndex--
// }
// $(tabbable[intTabIndex]).focus()
@ -265,7 +265,7 @@ function simulateGamepad () {
cursorPos[1] += cursorSpeed
// if (intTabIndex < tabbable.length) {
// intTabIndex++
// }else{
// } else{
// intTabIndex = tabbable.length
// }
// $(tabbable[intTabIndex]).focus()

View file

@ -1675,7 +1675,7 @@ const app = new Vue({
app.page = (kind) + "_" + (id);
window.location.hash = `${kind}/${id}${isLibrary ? "/" + isLibrary : ''}`
app.getTypeFromID((kind), (id), (isLibrary), params);
}else{
} else{
app.page = (kind)
window.location.hash = `${kind}/${id}${isLibrary ? "/" + isLibrary : ''}`
}

View file

@ -110,9 +110,9 @@ const wsapi = {
toggleRepeat() {
if (MusicKit.getInstance().repeatMode == 0) {
MusicKit.getInstance().repeatMode = 1
}else if (MusicKit.getInstance().repeatMode == 1){
} else if (MusicKit.getInstance().repeatMode == 1){
MusicKit.getInstance().repeatMode = 2
}else{
} else{
MusicKit.getInstance().repeatMode = 0
}
},