Left-bottom and right-bottom were added recently but the vOffset option was left out; since the default positioning (which would correspond to `bottom`) adds vOffset, seems like right-bottom and left-bottom should too.
case 'left bottom':
return {
left: $anchorDims.offset.left,
- top: $anchorDims.offset.top + $anchorDims.height
+ top: $anchorDims.offset.top + $anchorDims.height + vOffset
};
break;
case 'right bottom':
return {
left: $anchorDims.offset.left + $anchorDims.width + hOffset - $eleDims.width,
- top: $anchorDims.offset.top + $anchorDims.height
+ top: $anchorDims.offset.top + $anchorDims.height + vOffset
};
break;
default: