UX: Take into account of header when rendering autocomplete.

This commit is contained in:
Guo Xiang Tan 2016-09-22 13:42:49 +08:00
parent b5d6d3c326
commit 5d2aa957b4
1 changed files with 10 additions and 6 deletions

View File

@ -237,15 +237,19 @@ export default function(options) {
me.parent().append(div);
if(!isInput){
if (!isInput) {
vOffset = div.height();
}
if (Discourse.Site.currentProp('mobileView') && !isInput) {
div.css('width', 'auto');
if ((window.innerHeight - me.outerHeight() - $("header.d-header").innerHeight()) < vOffset) {
vOffset = -23;
}
if ((me.height() / 2) >= pos.top) { vOffset = -23; }
if ((me.width() / 2) <= pos.left) { hOffset = -div.width(); }
if (Discourse.Site.currentProp('mobileView')) {
div.css('width', 'auto');
if ((me.height() / 2) >= pos.top) { vOffset = -23; }
if ((me.width() / 2) <= pos.left) { hOffset = -div.width(); }
}
}
var mePos = me.position();