mirror of
https://github.com/immich-app/immich.git
synced 2026-01-19 16:20:38 -08:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
const broadcast = new BroadcastChannel('immich');
|
|
|
|
export function cancelImageUrl(url: string | undefined | null) {
|
|
if (!url) {
|
|
return;
|
|
}
|
|
broadcast.postMessage({ type: 'cancel', url });
|
|
}
|
|
export function preloadImageUrl(url: string | undefined | null) {
|
|
if (!url) {
|
|
return;
|
|
}
|
|
broadcast.postMessage({ type: 'preload', url });
|
|
}
|