()
| 120 | } |
| 121 | |
| 122 | attachCloseOverflowHandlers() { |
| 123 | const closingEvents = this.getClosingEvents(); |
| 124 | closingEvents.forEach(clEvent => { |
| 125 | if (!this.preventOverflowClosing) { |
| 126 | this.addEventListener(clEvent, this.fireCloseOverflowRef); |
| 127 | } |
| 128 | }); |
| 129 | } |
| 130 | |
| 131 | detachCloseOverflowHandlers() { |
| 132 | const closingEvents = this.getClosingEvents(); |
no test coverage detected