Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Add VML-specific adjustments to offset calculations for IE8/7/6. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jul 7, 2013
1 parent 1b45e98 commit 8df8d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tips/tips.js
Expand Up @@ -376,8 +376,8 @@ $.extend(Tip.prototype, {
inner.css({
coordsize: (size[0]+border) + ' ' + (size[1]+border),
antialias: ''+(mimic.string().indexOf(CENTER) > -1),
left: translate[0],
top: translate[1],
left: translate[0] - (translate[2] * Number(precedance === X)),
top: translate[1] - (translate[2] * Number(precedance === Y)),
width: size[0] + border,
height: size[1] + border
})
Expand Down

0 comments on commit 8df8d98

Please sign in to comment.