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

restore model properties

This commit is contained in:
Luke Pulverenti 2015-04-03 11:52:49 -04:00
parent bab5d2af2a
commit fd459b0744
7 changed files with 30 additions and 26 deletions

View file

@ -165,7 +165,7 @@
itemHtml += '<li class="liSchedule" data-day="' + a.DayOfWeek + '" data-start="' + a.StartHour + '" data-end="' + a.EndHour + '">';
itemHtml += '<a href="#">';
itemHtml += '<h3>' + a.DayOfWeek + '</h3>';
itemHtml += '<h3>' + Globalize.translate('Option' + a.DayOfWeek) + '</h3>';
itemHtml += '<p>' + getDisplayTime(a.StartHour) + ' - ' + getDisplayTime(a.EndHour) + '</p>';
itemHtml += '</a>';