all repos — onyx @ b1342fcc0f9234da1730d1de56c307ad11253052

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);
  }
}