all repos — onyx @ c80313085e7c6f7569fb3d81500a1b5b761aae78

minimal map annotation and location data sharing tool

src/29-modalCollection.ts (raw)

1
2
3
4
5
6
7
8
9
10
11
class ModalCollection {
  createOverlay: CreateOverlayModal;
  
  constructor(createOverlay: CreateOverlayModal) {
    this.createOverlay = createOverlay;
  }
  
  closeAll(): void {
    this.createOverlay.setVisible(false);
  }
}