vendor/assets/js/foundation.util.box.js.es6 in foundation-rails-6.2.4.0 vs vendor/assets/js/foundation.util.box.js.es6 in foundation-rails-6.3.0.0
- old
+ new
@@ -173,16 +173,16 @@
}
break;
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:
return {
left: (Foundation.rtl() ? $anchorDims.offset.left - $eleDims.width + $anchorDims.width : $anchorDims.offset.left + hOffset),