change(tracker): change call window time format
This commit is contained in:
parent
55abe72412
commit
b43de16468
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ export default class CallWindow {
|
|||
const secsFull = ~~(ellapsed / 1000)
|
||||
const mins = ~~(secsFull / 60)
|
||||
const secs = secsFull - mins * 60
|
||||
tsElem.innerText = `${mins}:${secs < 10 ? 0 : ''}${secs}`
|
||||
tsElem.innerText = `${mins}m${secs < 10 ? 0 : ''}${secs}s`
|
||||
}, 500)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue