()
| 674 | } |
| 675 | |
| 676 | _afterOpenPopover() { |
| 677 | this._iconPressed = true; |
| 678 | this.inner.focus(); |
| 679 | this.fireDecoratorEvent("open"); |
| 680 | |
| 681 | const allItems = this._getItems(); |
| 682 | const currentItem = allItems.find(item => { |
| 683 | return item.selected || item.focused; |
| 684 | }); |
| 685 | |
| 686 | if (currentItem) { |
| 687 | this._scrollToItem(allItems.indexOf(currentItem)); |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | _afterClosePopover() { |
| 692 | this._iconPressed = false; |
nothing calls this directly
no test coverage detected