()
| 459 | } |
| 460 | |
| 461 | onEnterDOM() { |
| 462 | if (isDesktop()) { |
| 463 | this.setAttribute("desktop", ""); |
| 464 | } |
| 465 | |
| 466 | if (!this._clickHandlerAttached) { |
| 467 | this.addEventListener("click", this._onclickBound); |
| 468 | this._clickHandlerAttached = true; |
| 469 | } |
| 470 | |
| 471 | registerUI5Element(this, this._updateAccessibleNameRefTexts.bind(this)); |
| 472 | } |
| 473 | |
| 474 | _updateAccessibleNameRefTexts() { |
| 475 | this._accessibleNameRefTexts = getAllAccessibleNameRefTexts(this); |
nothing calls this directly
no test coverage detected