update code for #59

This commit is contained in:
Jeongkyu Shin 2019-10-15 19:57:11 +09:00
parent f75d5ada4b
commit 6c84410481
2 changed files with 6 additions and 5 deletions

View file

@ -129,5 +129,5 @@
} }
.etab-view { .etab-view {
position: relative;
} }

View file

@ -8,16 +8,17 @@ if (!document) {
(function () { (function () {
const styles = ` const styles = `
webview { webview {
width: 0px;
height: 0px;
}
webview.visible {
width: 100%; width: 100%;
height: 100%; height: 100%;
top: 0; top: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;
position: absolute;
visibility: hidden;
}
webview.visible {
visibility: visible;
} }
`; `;
let styleTag = document.createElement("style"); let styleTag = document.createElement("style");