Remove duplicate method

This commit is contained in:
JC Brand 2021-06-25 18:19:01 +02:00
parent 7a22afa9ec
commit 18f883545b

View File

@ -20,6 +20,8 @@ export class BaseDropdown extends CustomElement {
}
firstUpdated () {
super.firstUpdated();
this.initArrowNavigation();
this.menu = this.querySelector('.dropdown-menu');
this.dropdown = this.firstElementChild;
this.button = this.dropdown.querySelector('button');
@ -96,11 +98,6 @@ export default class DropdownList extends BaseDropdown {
this.navigator.disable();
}
firstUpdated () {
super.firstUpdated();
this.initArrowNavigation();
}
initArrowNavigation () {
if (!this.navigator) {
const options = {