mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
format: run prettify
This commit is contained in:
@@ -6,21 +6,24 @@ import { debounce } from "lodash";
|
||||
export class SettingsResizer {
|
||||
constructor() {
|
||||
this.adjustPopupHeight();
|
||||
window.addEventListener('resize', debounce(this.adjustPopupHeight, 250) as EventListener);
|
||||
document.addEventListener('DOMContentLoaded', this.adjustPopupHeight);
|
||||
window.addEventListener(
|
||||
"resize",
|
||||
debounce(this.adjustPopupHeight, 250) as EventListener,
|
||||
);
|
||||
document.addEventListener("DOMContentLoaded", this.adjustPopupHeight);
|
||||
}
|
||||
|
||||
private adjustPopupHeight() {
|
||||
const iframePopup = document.getElementById('ExtensionPopup');
|
||||
const iframePopup = document.getElementById("ExtensionPopup");
|
||||
if (!iframePopup) return;
|
||||
|
||||
const viewportHeight = window.innerHeight;
|
||||
const idealHeight = viewportHeight - 80 - 15; // -80px for the top of the popup
|
||||
|
||||
if (idealHeight > 600) {
|
||||
iframePopup.style.height = '600px';
|
||||
iframePopup.style.height = "600px";
|
||||
} else {
|
||||
iframePopup.style.height = `${idealHeight}px`;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user