()
| 182 | FancyError.queue.unshift(error); |
| 183 | } else { |
| 184 | const showError = (): void => { |
| 185 | $_('body').prepend(FancyError.generateModalHtml(error)); |
| 186 | FancyError.attachDismissHandler(id); |
| 187 | }; |
| 188 | |
| 189 | if ($_('body').length > 0) { |
| 190 | showError(); |
nothing calls this directly
no test coverage detected