Compare commits
3 Commits
10.10
...
absolute-z
Author | SHA1 | Date | |
---|---|---|---|
|
7519f149f5 | ||
|
cb02c92081 | ||
|
e710efe961 |
@ -227,7 +227,7 @@ public class PluginConfiguration : BasePluginConfiguration
|
||||
/// <summary>
|
||||
/// Gets or sets the amount of intro to play (in seconds).
|
||||
/// </summary>
|
||||
public int RemainingSecondsOfIntro { get; set; } = 2;
|
||||
public int RemainingSecondsOfIntro { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the amount of intro at start to play (in seconds).
|
||||
|
@ -935,6 +935,8 @@
|
||||
|
||||
persistSkip.addEventListener("change", persistSkipChanged);
|
||||
|
||||
var remainingSecondsOfIntro = document.getElementById("RemainingSecondsOfIntro")
|
||||
|
||||
async function pluginSkipSettingChanged() {
|
||||
if (pluginSkip.checked) {
|
||||
serverSkipSettings.style.display = "unset";
|
||||
@ -944,6 +946,7 @@
|
||||
autoSkip.checked = false;
|
||||
skipButtonVisible.checked = false;
|
||||
persistSkip.checked = false;
|
||||
remainingSecondsOfIntro.value = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -1609,7 +1612,7 @@
|
||||
fetchWithAuth("Episode/" + lhsId + "/Timestamps", "POST", JSON.stringify(newLhs));
|
||||
fetchWithAuth("Episode/" + rhsId + "/Timestamps", "POST", JSON.stringify(newRhs));
|
||||
|
||||
Dashboard.alert("New introduction timestamps saved");
|
||||
Dashboard.alert("New segment timestamps saved");
|
||||
});
|
||||
document.addEventListener("keydown", keyDown);
|
||||
windowHashInterval = setInterval(checkWindowHash, 2500);
|
||||
|
Loading…
x
Reference in New Issue
Block a user