(tourId)
| 42 | /* Custom methods TODO: shutdown? hide show */ |
| 43 | methods: { |
| 44 | startTour(tourId) { |
| 45 | const intercom = window.Intercom; |
| 46 | if (typeof intercom === "undefined") return; |
| 47 | intercom("startTour", tourId); |
| 48 | }, |
| 49 | shutdown() { |
| 50 | const intercom = window.Intercom; |
| 51 | if (typeof intercom === "undefined") return; |
nothing calls this directly
no outgoing calls
no test coverage detected