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

continue jquery removal

This commit is contained in:
Luke Pulverenti 2016-06-22 00:39:47 -04:00
parent 75a40a8dbb
commit 31dc3c06e1
14 changed files with 352 additions and 375 deletions

View file

@ -1,4 +1,4 @@
define(['datetime', 'paper-icon-button-light'], function (datetime) {
define(['datetime', 'paper-icon-button-light', 'emby-button', 'listViewStyle'], function (datetime) {
var query = {
@ -38,18 +38,17 @@
var timer = timers[i];
html += '<paper-icon-item>';
html += '<div class="listItem">';
html += '<paper-fab mini icon="live-tv" item-icon></paper-fab>';
html += '<button type="button" is="emby-button" class="fab mini autoSize blue" item-icon><i class="md-icon">live_tv</i></button>';
html += '<paper-item-body three-line>';
html += '<div class="listItemBody">';
html += '<a class="clearLink" href="livetvseriestimer.html?id=' + timer.Id + '">';
html += '<div>';
html += '<h3>';
html += timer.Name;
html += '</div>';
html += '</h3>';
html += '<div secondary>';
html += '<div class="secondary">';
if (timer.DayPattern) {
html += timer.DayPattern;
}
@ -67,7 +66,7 @@
}
html += '</div>';
html += '<div secondary>';
html += '<div class="secondary">';
if (timer.RecordAnyChannel) {
html += Globalize.translate('LabelAllChannels');
}
@ -75,13 +74,13 @@
html += timer.ChannelName;
}
html += '</div>';
html += '</a>';
html += '</paper-item-body>';
html += '</a>';
html += '</div>';
html += '<button type="button" is="paper-icon-button-light" data-seriestimerid="' + timer.Id + '" title="' + Globalize.translate('ButtonCancelSeries') + '" class="btnCancelSeries autoSize"><i class="md-icon">cancel</i></button>';
html += '</paper-icon-item>';
html += '</div>';
}
if (timers.length) {
@ -123,9 +122,7 @@
ApiClient.getLiveTvSeriesTimers(query).then(function (result) {
require(['paper-fab', 'paper-item-body', 'paper-icon-item'], function () {
renderTimers(context, result.Items);
});
renderTimers(context, result.Items);
});
}