()
| 1 | export default class extends HTMLElement { |
| 2 | connectedCallback () { |
| 3 | this.header = document.querySelector('#signing_form_header') |
| 4 | |
| 5 | window.addEventListener('scroll', this.onScroll) |
| 6 | window.addEventListener('resize', this.onResize) |
| 7 | |
| 8 | if (!this.isNarrow() && this.isHeaderNotVisible()) { |
| 9 | this.showButtons({ animate: false }) |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | disconnectedCallback () { |
| 14 | window.removeEventListener('scroll', this.onScroll) |
nothing calls this directly
no test coverage detected