解决chromium内核,地下城强化点了取消后再次打开无法保存设置的问题。
This commit is contained in:
parent
0727f8af5a
commit
eb2f37f639
|
@ -1773,8 +1773,8 @@ const teamsCount = 2;
|
||||||
</ul>
|
</ul>
|
||||||
<div class="dialog-control">
|
<div class="dialog-control">
|
||||||
<button class="dialog-clear brown-button" type="reset"></button>
|
<button class="dialog-clear brown-button" type="reset"></button>
|
||||||
<button class="dialog-close brown-button" value="cancel"></button>
|
<button class="dialog-close brown-button" formmethod="dialog" value="cancel"></button>
|
||||||
<button class="dialog-confirm brown-button" type="submit"></button>
|
<button class="dialog-confirm brown-button" type="submit" value="submit"></button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</dialog>
|
</dialog>
|
||||||
|
|
|
@ -3105,7 +3105,7 @@ function initialize() {
|
||||||
selectedDeviceId = localStorage.getItem(cfgPrefix + sourceSelect_id);
|
selectedDeviceId = localStorage.getItem(cfgPrefix + sourceSelect_id);
|
||||||
if (videoInputDevices.every(device=>device.deviceId != selectedDeviceId))
|
if (videoInputDevices.every(device=>device.deviceId != selectedDeviceId))
|
||||||
{
|
{
|
||||||
selectedDeviceId = videoInputDevices[0].deviceId;
|
selectedDeviceId = videoInputDevices?.[0]?.deviceId;
|
||||||
}
|
}
|
||||||
if (videoInputDevices.length >= 1) {
|
if (videoInputDevices.length >= 1) {
|
||||||
videoInputDevices.forEach((element) => {
|
videoInputDevices.forEach((element) => {
|
||||||
|
|
|
@ -54395,7 +54395,7 @@ const cachesMap = new Map([
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"multi.html",
|
"multi.html",
|
||||||
"87bcda44a4def639b642ab3fadc32cb7"
|
"afd43a4746a19c65eb9d4da3b341c74c"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"script-custom_elements.js",
|
"script-custom_elements.js",
|
||||||
|
@ -54415,11 +54415,11 @@ const cachesMap = new Map([
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"script.js",
|
"script.js",
|
||||||
"fe31655ca750f6e030ae6f25b7c5b5a8"
|
"40fc743766f11484a4da19c0b13c3d8d"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"solo.html",
|
"solo.html",
|
||||||
"633cdb0ed0786321ae54451b6bd8e08b"
|
"757690e647d6a30f69ad942c85550757"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"style-fix-html2canvas.css",
|
"style-fix-html2canvas.css",
|
||||||
|
@ -54439,7 +54439,7 @@ const cachesMap = new Map([
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"triple.html",
|
"triple.html",
|
||||||
"04878ddb76de4998e8ee62bf91be60e2"
|
"9de212235c69fe05833e1ff6ea06597b"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"languages/en.css",
|
"languages/en.css",
|
||||||
|
|
|
@ -1463,8 +1463,8 @@ const teamsCount = 1;
|
||||||
</ul>
|
</ul>
|
||||||
<div class="dialog-control">
|
<div class="dialog-control">
|
||||||
<button class="dialog-clear brown-button" type="reset"></button>
|
<button class="dialog-clear brown-button" type="reset"></button>
|
||||||
<button class="dialog-close brown-button" value="cancel"></button>
|
<button class="dialog-close brown-button" formmethod="dialog" value="cancel"></button>
|
||||||
<button class="dialog-confirm brown-button" type="submit"></button>
|
<button class="dialog-confirm brown-button" type="submit" value="submit"></button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</dialog>
|
</dialog>
|
||||||
|
|
|
@ -2308,8 +2308,8 @@ const teamsCount = 3;
|
||||||
</ul>
|
</ul>
|
||||||
<div class="dialog-control">
|
<div class="dialog-control">
|
||||||
<button class="dialog-clear brown-button" type="reset"></button>
|
<button class="dialog-clear brown-button" type="reset"></button>
|
||||||
<button class="dialog-close brown-button" value="cancel"></button>
|
<button class="dialog-close brown-button" formmethod="dialog" value="cancel"></button>
|
||||||
<button class="dialog-confirm brown-button" type="submit"></button>
|
<button class="dialog-confirm brown-button" type="submit" value="submit"></button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</dialog>
|
</dialog>
|
||||||
|
|
Loading…
Reference in New Issue