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

add tv guide hover menus

This commit is contained in:
Luke Pulverenti 2014-01-15 17:19:45 -05:00
parent 817effb7d8
commit e768e496ed
11 changed files with 267 additions and 58 deletions

View file

@ -53,7 +53,7 @@
cssClass += " movieProgramInfo";
}
html += '<div class="' + cssClass + '">';
html += '<div data-programid="' + program.Id + '" class="' + cssClass + '">';
var name = program.Name;
@ -101,7 +101,7 @@
html += '</a>';
}
$('#programList', page).html(html).trigger('create');
$('#programList', page).html(html).trigger('create').createGuideHoverMenu('.tvProgramInfo');
}
function loadPrograms(page) {
@ -196,7 +196,7 @@
hours = (hours % 12) || 12;
text = hours;
if (minutes) {
text += ':';