mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update client sync
This commit is contained in:
parent
c13fc2c4cc
commit
3c190041f2
10 changed files with 347 additions and 48 deletions
|
@ -1103,7 +1103,12 @@
|
|||
|
||||
outerHtml += '</div>';
|
||||
|
||||
html += '<h1>';
|
||||
if (index == 0) {
|
||||
html += '<h1>';
|
||||
}
|
||||
else {
|
||||
html += '<h1 style="margin-top:2em;">';
|
||||
}
|
||||
html += itemGroupTitle;
|
||||
html += '</h1>';
|
||||
|
||||
|
|
|
@ -166,7 +166,6 @@
|
|||
var html = '';
|
||||
|
||||
var href = plugin.externalUrl ? plugin.externalUrl : "addplugin.html?name=" + encodeURIComponent(plugin.name) + "&guid=" + plugin.guid;
|
||||
|
||||
if (options.context) {
|
||||
href += "&context=" + options.context;
|
||||
}
|
||||
|
|
|
@ -2008,9 +2008,7 @@ var AppInfo = {};
|
|||
define("wakeonlan", ["apiclient/wakeonlan"]);
|
||||
}
|
||||
|
||||
if (Dashboard.isRunningInCordova() && $.browser.android) {
|
||||
define("localassetmanager", ["cordova/android/localassetmanager"]);
|
||||
} else if (Dashboard.isRunningInCordova()) {
|
||||
if (Dashboard.isRunningInCordova()) {
|
||||
define("localassetmanager", ["cordova/localassetmanager"]);
|
||||
} else {
|
||||
define("localassetmanager", ["apiclient/localassetmanager"]);
|
||||
|
|
|
@ -260,8 +260,8 @@
|
|||
$('#txtSyncJobName', page).val(job.Name);
|
||||
$('#selectProfile', page).val(job.Profile || '').trigger('change');
|
||||
$('#selectQuality', page).val(job.Quality || '').trigger('change');
|
||||
$('#chkUnwatchedOnly', page).checked(job.UnwatchedOnly).checkboxradio('refresh');
|
||||
$('#chkSyncNewContent', page).checked(job.SyncNewContent).checkboxradio('refresh');
|
||||
$('#chkUnwatchedOnly', page).checked(job.UnwatchedOnly);
|
||||
$('#chkSyncNewContent', page).checked(job.SyncNewContent);
|
||||
$('#txtItemLimit', page).val(job.ItemLimit);
|
||||
|
||||
if (job.Bitrate) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue