1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

more support for episodes directly in a series folder

This commit is contained in:
Luke Pulverenti 2013-12-03 23:18:50 -05:00
parent b8c8a794f3
commit e38caab270
15 changed files with 217 additions and 65 deletions

View file

@ -102,11 +102,11 @@
hours = 0;
}
hours = parseInt(hours);
hours = hours.toFixed(0);
ticks -= (hours * 36000000000);
var minutes = parseInt(ticks / 600000000);
var minutes = (ticks / 600000000).toFixed(0);
var suffix = "am";