Extra position check for multiselect dropdown. Fix app/issues/575

remotes/origin/stable5
Thomas Tanghus 13 years ago
parent 17d21a84b6
commit 5a8e0f2048
  1. 5
      core/js/multiselect.js

@ -266,8 +266,9 @@
}
list.append(list.find('li.creator'));
var pos=button.position();
if($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height())
|| $(document).height()/2 > pos.top
if(($(document).height() > (button.offset().top+button.outerHeight() + list.children().length * button.height())
&& $(document).height() - button.offset().top > (button.offset().top+button.outerHeight() + list.children().length * button.height()))
|| $(document).height()/2 > button.offset().top
) {
list.css({
top:pos.top+button.outerHeight()-5,

Loading…
Cancel
Save