Lines Matching refs:actualWidth
1197 var actualWidth = $tip[0].offsetWidth
1206 … placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' :
1207 … placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' :
1215 var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
1265 var actualWidth = $tip[0].offsetWidth
1272 var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)
1278 …var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - heig…
1363 Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { argument
1364 …t == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1365 …t == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
1366 … == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
1371 …Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { argument
1388 var rightEdgeOffset = pos.left + viewportPadding + actualWidth