Merge pull request #1738 from owncloud/fix_multiselect_in_settings

Extra position check for multiselect dropdown. Fix app/issues/575
This commit is contained in:
Frank Karlitschek 2013-02-20 08:34:26 -08:00
commit 18dab4a88e
1 changed files with 3 additions and 2 deletions

View File

@ -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,