Skip to content

Commit

Permalink
Merge branch 'TK_175'
Browse files Browse the repository at this point in the history
  • Loading branch information
micmath committed Oct 12, 2009
2 parents 702298d + 4592446 commit 63944fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/autosuggest/autosuggest.js
Expand Up @@ -98,8 +98,8 @@
var inputOffset = that.inputElement.offset();

that.overlay.container
.css('left', parseInt(inputOffset.left) + 'px')
.css('top', parseInt(inputOffset.top + that.inputElement[0].offsetHeight-1) + 'px')
.css('left', inputOffset.left + 'px')
.css('top', inputOffset.top + that.inputElement[0].offsetHeight + 'px')
.css('width', ((that.opts.width)? that.opts.width : that.inputElement[0].offsetWidth + 'px'));
}

Expand Down

0 comments on commit 63944fa

Please sign in to comment.