a zip code crypto-currency system good for red ONLY

modal.js 538B

1234567891011121314151617
  1. import { OverlayProxy } from '../../navigation/overlay-proxy';
  2. import { ModalImpl } from './modal-impl';
  3. /**
  4. * @hidden
  5. */
  6. export class Modal extends OverlayProxy {
  7. constructor(app, component, data, opts = {}, config, deepLinker) {
  8. super(app, component, config, deepLinker);
  9. this.data = data;
  10. this.opts = opts;
  11. this.isOverlay = true;
  12. }
  13. getImplementation() {
  14. return new ModalImpl(this._app, this._component, this.data, this.opts, this._config);
  15. }
  16. }
  17. //# sourceMappingURL=modal.js.map