diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-10-18 16:58:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-10-18 16:58:20 +0900 |
| commit | 39575b4696b06bc886e3883f557c21a3af1eadc2 (patch) | |
| tree | a333e89a4e1e6509df4ae9ed99a6cb9bf30825b3 /src/client/scripts | |
| parent | Resolve #6684 (diff) | |
| download | sharkey-39575b4696b06bc886e3883f557c21a3af1eadc2.tar.gz sharkey-39575b4696b06bc886e3883f557c21a3af1eadc2.tar.bz2 sharkey-39575b4696b06bc886e3883f557c21a3af1eadc2.zip | |
:art:
Diffstat (limited to 'src/client/scripts')
| -rw-r--r-- | src/client/scripts/popout.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/scripts/popout.ts b/src/client/scripts/popout.ts index f3611390c6..51b8d72868 100644 --- a/src/client/scripts/popout.ts +++ b/src/client/scripts/popout.ts @@ -13,7 +13,7 @@ export function popout(path: string, w?: HTMLElement) { `width=${width}, height=${height}, top=${y}, left=${x}`); } else { const width = 400; - const height = 450; + const height = 500; const x = window.top.outerHeight / 2 + window.top.screenY - (height / 2); const y = window.top.outerWidth / 2 + window.top.screenX - (width / 2); window.open(url, url, |