mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
#712 - group multiple versions
This commit is contained in:
parent
39c57da623
commit
6a50b9ce36
10 changed files with 99 additions and 78 deletions
|
@ -102,11 +102,11 @@
|
|||
hours = 0;
|
||||
}
|
||||
|
||||
hours = hours.toFixed(0);
|
||||
hours = Math.floor(hours);
|
||||
|
||||
ticks -= (hours * 36000000000);
|
||||
|
||||
var minutes = (ticks / 600000000).toFixed(0);
|
||||
var minutes = Math.floor((ticks / 600000000));
|
||||
|
||||
var suffix = "am";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue