Local media sync events

This commit is contained in:
advplyr 2023-01-15 14:58:26 -06:00
parent 297eca6a86
commit 8f6dd72df2
15 changed files with 234 additions and 80 deletions

View file

@ -104,7 +104,7 @@ Vue.prototype.$secondsToTimestamp = (seconds) => {
}
Vue.prototype.$secondsToTimestampFull = (seconds) => {
let _seconds = seconds
let _seconds = Math.round(seconds)
let _minutes = Math.floor(seconds / 60)
_seconds -= _minutes * 60
let _hours = Math.floor(_minutes / 60)