Skip to content

Commit

Permalink
Fix autocompletion after core commit c44e5a8819e81
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianheine committed May 31, 2011
1 parent 5883d58 commit c96d3be
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions script/autocompletion.js
Expand Up @@ -120,6 +120,9 @@ function addAutoCompletion(input, ajaxcall, multi, prepareLi, styleList) {


var div = document.createElement('div'); var div = document.createElement('div');
div.appendChild(ul); div.appendChild(ul);
// Since the div has no dimensions, the ul inside flows over,
// but JSpopup has overflow: hidden.
div.style.overflow = 'visible';
div.className = 'JSpopup'; div.className = 'JSpopup';
input.parentNode.appendChild(div); input.parentNode.appendChild(div);


Expand Down

0 comments on commit c96d3be

Please sign in to comment.