mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-22 01:03:01 +02:00
fix sleeve memory bug
This commit is contained in:
@@ -10,11 +10,7 @@ interface ICreatePopupOptions {
|
||||
* @param id The (hopefully) unique identifier for the popup container.
|
||||
* @param elems The collection of HTML Elements to show within the popup.
|
||||
*/
|
||||
export function createPopup(
|
||||
id: string,
|
||||
elems: HTMLElement[],
|
||||
options: ICreatePopupOptions = {},
|
||||
): HTMLDivElement {
|
||||
export function createPopup(id: string, elems: HTMLElement[], options: ICreatePopupOptions = {}): HTMLDivElement {
|
||||
const container: HTMLDivElement = createElement("div", {
|
||||
class: "popup-box-container",
|
||||
display: "flex",
|
||||
|
||||
Reference in New Issue
Block a user