()
| 67 | intercom("showMessages"); |
| 68 | }, |
| 69 | showNewMessage() { |
| 70 | const intercom = window.Intercom; |
| 71 | if (typeof intercom === "undefined") return; |
| 72 | intercom("showNewMessage"); |
| 73 | }, |
| 74 | onShow(callback) { |
| 75 | const intercom = window.Intercom; |
| 76 | if (typeof intercom === "undefined") return; |
nothing calls this directly
no outgoing calls
no test coverage detected