(e: UI5CustomEvent<Icon, "click">)
| 660 | } |
| 661 | |
| 662 | _navButtonClick(e: UI5CustomEvent<Icon, "click">) { |
| 663 | const target = e.target as Icon; |
| 664 | |
| 665 | if (target.hasAttribute("data-ui5-arrow-forward")) { |
| 666 | this.navigateArrowRight(); |
| 667 | } else { |
| 668 | this.navigateArrowLeft(); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * Changes the currently displayed page. |
nothing calls this directly
no test coverage detected