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

fix syntax issue

This commit is contained in:
dkanada 2019-03-05 21:59:52 +09:00
parent f1b34bdb57
commit 6ffd74b9dd
2 changed files with 3 additions and 4 deletions

View file

@ -76,8 +76,8 @@ define(["jQuery", "loading", "fnchecked", "emby-checkbox", "emby-textarea", "emb
path: $("#txtMetadataPath", view).val(), path: $("#txtMetadataPath", view).val(),
networkSharePath: $("#txtMetadataNetworkPath", view).val(), networkSharePath: $("#txtMetadataNetworkPath", view).val(),
callback: function(path, networkPath) { callback: function(path, networkPath) {
path && ($("#txtMetadataPath", view).val(path); path && $("#txtMetadataPath", view).val(path);
$("#txtMetadataNetworkPath", view).val(networkPath)); networkPath && $("#txtMetadataNetworkPath", view).val(networkPath);
picker.close(); picker.close();
}, },
validateWriteable: true, validateWriteable: true,

View file

@ -1,5 +1,4 @@
<div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage withTabs"> <div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage withTabs">
<div> <div>
<div class="content-primary"> <div class="content-primary">
<form class="librarySettingsForm"> <form class="librarySettingsForm">
@ -11,6 +10,7 @@
</select> </select>
<div class="fieldDescription">${LabelDateAddedBehaviorHelp}</div> <div class="fieldDescription">${LabelDateAddedBehaviorHelp}</div>
</div> </div>
<div class="checkboxContainer checkboxContainer-withDescription fldSaveMetadataHidden hide"> <div class="checkboxContainer checkboxContainer-withDescription fldSaveMetadataHidden hide">
<label> <label>
<input type="checkbox" is="emby-checkbox" class="chkAirDays" id="chkSaveMetadataHidden" data-filter="Sunday" /> <input type="checkbox" is="emby-checkbox" class="chkAirDays" id="chkSaveMetadataHidden" data-filter="Sunday" />
@ -33,7 +33,6 @@
<button is="emby-button" type="submit" class="raised button-submit block"><span>${ButtonSave}</span></button> <button is="emby-button" type="submit" class="raised button-submit block"><span>${ButtonSave}</span></button>
</form> </form>
</div> </div>
</div> </div>
</div> </div>