Fix whitespace

This commit is contained in:
TwistedUmbrellaX 2024-10-09 06:42:51 -04:00
parent 2f07e0acb7
commit 93f0bee301

View File

@ -358,7 +358,7 @@
<div class="fieldDescription"> <div class="fieldDescription">
If checked, intros will be automatically skipped for <strong>all</strong> clients. If checked, intros will be automatically skipped for <strong>all</strong> clients.
Note: Clients cannot disable this setting from the player popup (gear icon).<br /> Clients <strong>cannot</strong> disable this setting from the player popup (gear icon).<br />
If you access Jellyfin through a reverse proxy, it must be configured to proxy websockets.<br /> If you access Jellyfin through a reverse proxy, it must be configured to proxy websockets.<br />
</div> </div>
</div> </div>
@ -394,7 +394,7 @@
<div class="fieldDescription"> <div class="fieldDescription">
If checked, credits will be automatically skipped for <strong>all</strong> clients. If checked, credits will be automatically skipped for <strong>all</strong> clients.
Note: Clients cannot disable this setting from the player popup (gear icon).<br /> Clients <strong>cannot</strong> disable this setting from the player popup (gear icon).<br />
If you access Jellyfin through a reverse proxy, it must be configured to proxy websockets.<br /> If you access Jellyfin through a reverse proxy, it must be configured to proxy websockets.<br />
</div> </div>
</div> </div>
@ -437,40 +437,40 @@
<div id="SkipButtonSettings"> <div id="SkipButtonSettings">
<div id="PersistContainer" class="checkboxContainer checkboxContainer-withDescription"> <div id="PersistContainer" class="checkboxContainer checkboxContainer-withDescription">
<label class="emby-checkbox-label"> <label class="emby-checkbox-label">
<input id="PersistSkipButton" type="checkbox" is="emby-checkbox" /> <input id="PersistSkipButton" type="checkbox" is="emby-checkbox" />
<span>Display button for intro duration</span> <span>Display button for intro duration</span>
</label> </label>
<div class="fieldDescription"> <div class="fieldDescription">
If checked, skip button will remain visible throught the intro (offset and timeout are ignored). If checked, skip button will remain visible throught the intro (offset and timeout are ignored).
<br /> <br />
Note: If unchecked, button will only appear in the player controls after the set timeout. Note: If unchecked, button will only appear in the player controls after the set timeout.
</div> </div>
</div> </div>
<div id="divShowPromptAdjustment" class="inputContainer"> <div id="divShowPromptAdjustment" class="inputContainer">
<label class="inputLabel inputLabelUnfocused" for="ShowPromptAdjustment"> <label class="inputLabel inputLabelUnfocused" for="ShowPromptAdjustment">
Skip prompt offset (in seconds) Skip prompt offset (in seconds)
</label> </label>
<input id="ShowPromptAdjustment" type="number" is="emby-input" min="0" /> <input id="ShowPromptAdjustment" type="number" is="emby-input" min="0" />
<div class="fieldDescription"> <div class="fieldDescription">
Seconds to display skip prompt before introduction begins. Seconds to display skip prompt before introduction begins.
</div> </div>
<br /> <br />
</div> </div>
<div id="divHidePromptAdjustment" class="inputContainer"> <div id="divHidePromptAdjustment" class="inputContainer">
<label class="inputLabel inputLabelUnfocused" for="HidePromptAdjustment"> <label class="inputLabel inputLabelUnfocused" for="HidePromptAdjustment">
Skip prompt timeout (in seconds) Skip prompt timeout (in seconds)
</label> </label>
<input id="HidePromptAdjustment" type="number" is="emby-input" min="2" /> <input id="HidePromptAdjustment" type="number" is="emby-input" min="2" />
<div class="fieldDescription"> <div class="fieldDescription">
Seconds after introduction before skip prompt is hidden. Seconds after introduction before skip prompt is hidden.
</div> </div>
<br /> <br />
</div> </div>
</div> </div>
@ -1180,7 +1180,7 @@
e.preventDefault(); e.preventDefault();
switchToEdit(displayInput, editInput); switchToEdit(displayInput, editInput);
}); });
editInput.addEventListener('blur', () => editInput.addEventListener('blur', () =>
switchToDisplay(displayInput, editInput) switchToDisplay(displayInput, editInput)
); );
displayInput.value = formatTime(parseFloat(editInput.value) || 0); displayInput.value = formatTime(parseFloat(editInput.value) || 0);