25 lines
664 B
TypeScript
25 lines
664 B
TypeScript
// Copyright 2018-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
export const show = (element: HTMLElement): void => {
|
|
const container: HTMLDivElement | null = document.querySelector(
|
|
'.lightbox-container'
|
|
);
|
|
if (!container) {
|
|
throw new TypeError("'.lightbox-container' is required");
|
|
}
|
|
container.innerHTML = '';
|
|
container.style.display = 'block';
|
|
container.appendChild(element);
|
|
};
|
|
|
|
export const hide = (): void => {
|
|
const container: HTMLDivElement | null = document.querySelector(
|
|
'.lightbox-container'
|
|
);
|
|
if (!container) {
|
|
return;
|
|
}
|
|
container.innerHTML = '';
|
|
container.style.display = 'none';
|
|
};
|