mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
removed developer tool setting
This commit is contained in:
parent
86989c71eb
commit
f6304a4e6a
3 changed files with 6 additions and 17 deletions
|
@ -37,6 +37,10 @@
|
|||
<label for="txtWebSocketPortNumber">Web socket port number: </label>
|
||||
<input type="number" id="txtWebSocketPortNumber" name="txtWebSocketPortNumber" pattern="[0-9]*" required="required" min="1" data-mini="true" />
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" id="chkDebugLog" name="chkDebugLog" data-mini="true" />
|
||||
<label for="chkDebugLog">Enable debug logging </label>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Cache Path</h2>
|
||||
<ul data-role="listview" class="ulForm">
|
||||
|
@ -57,20 +61,6 @@
|
|||
Supply a custom cache path. Media Browser Server must have write access to this folder. The location of this folder will directly impact server performance and should ideally be placed on a solid state drive.
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Miscellaneous</h2>
|
||||
<ul data-role="listview" class="ulForm">
|
||||
<li>
|
||||
<input type="checkbox" id="chkEnableDeveloperTools" name="chkEnableDeveloperTools" data-mini="true" />
|
||||
<label for="chkEnableDeveloperTools">Enable developer tools</label>
|
||||
<div class="fieldDescription">
|
||||
When enabled, developer tools will be available from the system tray.
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" id="chkDebugLog" name="chkDebugLog" data-mini="true" />
|
||||
<label for="chkDebugLog">Enable debug logging </label>
|
||||
</li>
|
||||
<li>
|
||||
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
||||
Save
|
||||
|
@ -79,6 +69,7 @@
|
|||
Cancel
|
||||
</button>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
$('#txtPortNumber', page).val(config.HttpServerPortNumber);
|
||||
$('#chkDebugLog', page).checked(config.EnableDebugLevelLogging).checkboxradio("refresh");
|
||||
|
||||
$('#chkEnableDeveloperTools', page).checked(config.EnableDeveloperTools).checkboxradio("refresh");
|
||||
$('#chkRunAtStartup', page).checked(config.RunAtStartup).checkboxradio("refresh");
|
||||
|
||||
|
||||
|
@ -136,7 +135,6 @@
|
|||
config.HttpServerPortNumber = $('#txtPortNumber', form).val();
|
||||
config.EnableDebugLevelLogging = $('#chkDebugLog', form).checked();
|
||||
|
||||
config.EnableDeveloperTools = $('#chkEnableDeveloperTools', form).checked();
|
||||
config.RunAtStartup = $('#chkRunAtStartup', form).checked();
|
||||
config.SystemUpdateLevel = $('#selectAutomaticUpdateLevel', form).val();
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
|
||||
html += '<div data-role="content" class="ui-content">';
|
||||
html += '<form>';
|
||||
html += '<p class="directoryPickerHeadline">' + options.instruction + ' Network paths can be entered manually in the event the Network button fails to locate your devices. For example, <b>\\\\my-server</b> or <b>\\\\192.168.1.101</b>.</p>';
|
||||
html += '<p class="directoryPickerHeadline">' + options.instruction + '<br/><br/>Network paths can be entered manually in the event the Network button fails to locate your devices. For example, <b>\\\\my-server</b> or <b>\\\\192.168.1.101</b>.</p>';
|
||||
|
||||
html += '<div style="margin:0;">';
|
||||
html += '<label for="txtDirectoryPickerPath" class="lblDirectoryPickerPath">Current Path:</label>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue