use dropdown offsetHeight instead of getBoundingClientRect.height

This commit is contained in:
Adam Mockor 2017-05-02 15:16:53 +02:00
parent 01dad3ac77
commit dfafebc50a

View file

@ -635,7 +635,7 @@ class Choices {
this.dropdown.setAttribute('aria-expanded', 'true');
const dimensions = this.dropdown.getBoundingClientRect();
const dropdownPos = Math.ceil(dimensions.top + window.scrollY + dimensions.height);
const dropdownPos = Math.ceil(dimensions.top + window.scrollY + this.dropdown.offsetHeight);
// If flip is enabled and the dropdown bottom position is greater than the window height flip the dropdown.
let shouldFlip = false;