(callback)
| 72 | intercom("showNewMessage"); |
| 73 | }, |
| 74 | onShow(callback) { |
| 75 | const intercom = window.Intercom; |
| 76 | if (typeof intercom === "undefined") return; |
| 77 | intercom("onShow", callback); |
| 78 | }, |
| 79 | onUnreadCountChange(callback) { |
| 80 | const intercom = window.Intercom; |
| 81 | if (typeof intercom === "undefined") return; |
nothing calls this directly
no outgoing calls
no test coverage detected