mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 04:42:58 -05:00
[web] Format source code
This commit is contained in:
@@ -19,4 +19,4 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
<style></style>
|
||||
|
||||
@@ -72,9 +72,17 @@ export default {
|
||||
methods: {
|
||||
play_track(track) {
|
||||
if (this.uris) {
|
||||
webapi.player_play_uri(this.uris, false, this.tracks.items.indexOf(track))
|
||||
webapi.player_play_uri(
|
||||
this.uris,
|
||||
false,
|
||||
this.tracks.items.indexOf(track)
|
||||
)
|
||||
} else if (this.expression) {
|
||||
webapi.player_play_expression(this.expression, false, this.tracks.items.indexOf(track))
|
||||
webapi.player_play_expression(
|
||||
this.expression,
|
||||
false,
|
||||
this.tracks.items.indexOf(track)
|
||||
)
|
||||
} else {
|
||||
webapi.player_play_uri(track.uri, false)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user