1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

offset scroll

This commit is contained in:
Kyle Spearrin 2017-07-07 16:15:40 -04:00
parent abed4df973
commit ab12c990bc

View File

@ -135,7 +135,7 @@ angular
var offset = target.offset();
var css = {
display: 'block',
top: offset.top + target.outerHeight()
top: offset.top + target.outerHeight() - (appendTo !== 'body' ? $(window).scrollTop() : 0)
};
if (appendedDropdownMenu.hasClass('dropdown-menu-right')) {