Added "Quit" button to the webremote screen

with a ios style popup confirmation
This commit is contained in:
Onur Gümüş 2022-01-22 18:48:04 +03:00
parent db8ece0b2a
commit b924bef651
5 changed files with 95 additions and 0 deletions

View file

@ -559,6 +559,11 @@ var app = new Vue({
}
}
this.player.currentMediaItem = mediaitem
},
quit() {
socket.send(JSON.stringify({
action: "quit"
}))
}
},
});