Skip to content

Commit 21f4b68

Browse files
committed
sbt fix
1 parent 03e9e98 commit 21f4b68

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

old_h/sb-test/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<link rel="stylesheet" href="style.css">
1313
</head>
1414
<body>
15-
<iframe id="iframe" sandbox="allow-scripts allow-forms" onload="setUrl()"></iframe>
15+
<iframe id="iframe" sandbox="allow-scripts allow-forms" allowfullscreen="true" webkitallowfullscreen="true" onload="setUrl()"></iframe>
1616
<button id="s-load">+</button>
1717
<div id="m-top" hidden>
1818
<div class="mfr">

old_h/sb-test/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const data = {
2424
ssrc.innerHTML = '';
2525
Object.keys(obj.src).forEach(src => data.addOpt(ssrc, src));
2626
data.upd();
27+
ui.panel.style.display = 'block';
28+
ui.panel.classList.toggle('hidden');
2729
},
2830
includeAny: function(i, tags){
2931
for (let t of tags){
@@ -84,8 +86,6 @@ const ui = {
8486
});
8587
ui.resetInactivityTimer();
8688
ui.bload.addEventListener('click', () => {
87-
ui.panel.style.display = 'block';
88-
ui.panel.classList.toggle('hidden');
8989
ui.loadCat();
9090
});
9191
},

old_h/sb-test/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ select.mfa {
8484
cursor: pointer;
8585
}
8686

87-
options.mfa {
87+
select.mfa option {
8888
background: #444;
8989
color: #eee;
9090
}

0 commit comments

Comments
 (0)