From: Kevin Ball Date: Thu, 25 Feb 2016 23:55:35 +0000 (-0800) Subject: Fix merge bug X-Git-Tag: v6.2.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30477096ba91e9ab6aa7dc4cb018b4f2e2d8a4ee;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix merge bug --- diff --git a/js/foundation.util.box.js b/js/foundation.util.box.js index cb2756433..71ca28966 100644 --- a/js/foundation.util.box.js +++ b/js/foundation.util.box.js @@ -115,7 +115,7 @@ function GetOffsets(element, anchor, position, vOffset, hOffset, isOverflow) { switch (position) { case 'top': return { - left: (Foundation.rtl() ? $anchorDims.offset.left - $eleDims.width + $anchorDims.width : $anchorDims.offset.left), left: $anchorDims.offset.left, + left: (Foundation.rtl() ? $anchorDims.offset.left - $eleDims.width + $anchorDims.width : $anchorDims.offset.left), top: $anchorDims.offset.top - ($eleDims.height + vOffset) } break;