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

sync updates

This commit is contained in:
Luke Pulverenti 2015-01-23 01:15:15 -05:00
parent 2ab7e15656
commit 9b452f3b53
85 changed files with 421 additions and 505 deletions

View file

@ -9,6 +9,10 @@
html += '<input id="txtJobName" type="text" required="required" />';
html += '</p>';
html += '<p>';
html += Globalize.translate('ValueDateCreated', parseISO8601Date(job.DateCreated, { toLocal: true }).toLocaleString());
html += '</p>';
html += '<p>';
html += '<label for="txtTargetName">' + Globalize.translate('LabelSyncTo') + '</label>';
html += '<input id="txtTargetName" type="text" readonly="readonly" />';
@ -142,6 +146,8 @@
var elem = $('.jobItems', page).html(html).trigger('create');
$(".lazy", elem).unveil(200);
$('.btnJobItemMenu', elem).on('click', function () {
showJobItemMenu(this);
});