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

Commit

Permalink
Merge branch 'master' of github.com:Craga89/qTip2
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Aug 12, 2013
2 parents 76f4814 + c7d7283 commit c2315b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tips/tips.js
Expand Up @@ -43,7 +43,7 @@ function vendorCss(elem, prop) {

// Parse a given elements CSS property into an int
function intCss(elem, prop) {
return parseInt(vendorCss(elem, prop), 10);
return Math.ceil(parseFloat(vendorCss(elem, prop)));
}


Expand Down

0 comments on commit c2315b3

Please sign in to comment.