()
| 1053 | } |
| 1054 | |
| 1055 | removeAllDialogs() { |
| 1056 | if (this.lifecycleState.type === 'window') { |
| 1057 | const d = [...this.lifecycleState.dialogs]; |
| 1058 | for (const dialog of d) { |
| 1059 | this.removeDialog(dialog.metaWindow); |
| 1060 | } |
| 1061 | } |
| 1062 | } |
| 1063 | |
| 1064 | removeDialog(metaWindow: MetaWindowWithMsProperties) { |
| 1065 | if (this.lifecycleState.type !== 'window') { |
no test coverage detected