From: Jan Schneider Date: Tue, 22 Jun 2010 15:34:07 +0000 (+0200) Subject: Fix positioning of KNL. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=eecbda327cffc4054eaddacdab14175637206f85;p=horde.git Fix positioning of KNL. --- diff --git a/horde/js/prettyautocomplete.js b/horde/js/prettyautocomplete.js index bb9d96caf..60b93fc5a 100644 --- a/horde/js/prettyautocomplete.js +++ b/horde/js/prettyautocomplete.js @@ -119,7 +119,7 @@ var PrettyAutocompleter = Class.create({ buildStructure: function() { // Build the outter box - var box = new Element('div', { id: this.p.box, className: this.p.boxClass }); + var box = new Element('div', { id: this.p.box, className: this.p.boxClass }).setStyle({ position: 'relative' }); // The list - where the choosen items are placed as
  • nodes var list = new Element('ul', { className: this.p.listClass });