(e)
| 243 | } |
| 244 | |
| 245 | onClickGetStartedButton (e) { |
| 246 | this.homePageEvent($(e.target).data('event-action')) |
| 247 | if (this.getStartedSignupContainer != null) { |
| 248 | this.getStartedSignupContainer.remove() |
| 249 | } |
| 250 | this.getStartedSignupContainer = document.createElement('div') |
| 251 | document.body.appendChild(this.getStartedSignupContainer) |
| 252 | this.getStartedSignupModal = new GetStartedSignupModal({ el: this.getStartedSignupContainer }) |
| 253 | return this.getStartedSignupModal |
| 254 | } |
| 255 | |
| 256 | onCarouselDirectMovev2 (e) { |
| 257 | const selector = $(e.target).closest('.carousel-tab').data('selector') |
nothing calls this directly
no test coverage detected