Yep, it pops up at the top of the page. A bit of trying different
scroll positions shows that it probably shows up with the relative
distance between the control and the top of the window added to the
start of the page instead of the top of the window.
I found the solution:
In 70_autocomplete.js, you need to replace:
Position.clone( ...
With:
Element.clonePosition(...
Position is deprecated in Prototype. Somehow these 2 behave differently now.
The text was updated successfully, but these errors were encountered:
From Dennis / EP-Tech
Yep, it pops up at the top of the page. A bit of trying different
scroll positions shows that it probably shows up with the relative
distance between the control and the top of the window added to the
start of the page instead of the top of the window.
I found the solution:
In 70_autocomplete.js, you need to replace:
Position.clone( ...
With:
Element.clonePosition(...
Position is deprecated in Prototype. Somehow these 2 behave differently now.
The text was updated successfully, but these errors were encountered: