1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-07 02:33:39 +02:00

Add currently playing bar

This commit is contained in:
Arne Schlüter 2018-04-21 22:46:33 +02:00
commit 19aa7038b3
4 changed files with 70 additions and 6 deletions

View file

@ -23,3 +23,9 @@
::current-content
(fn [db]
(-> db :response)))
(re-frame/reg-sub
; returns info on the current song as is (basically the metadata you can read from the file system)
::currently-playing
(fn [db]
(-> db :currently-playing)))