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

Commit

Permalink
Fix error in tips.js. Fixes #545
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jul 7, 2013
1 parent 09b5810 commit ef3a37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tips/tips.js
Expand Up @@ -111,7 +111,7 @@ $.extend(Tip.prototype, {
_useTitle: function(corner) {
var titlebar = this.qtip.elements.titlebar;
return titlebar && (
corner.y === TOP || (corner.y === CENTER && this.element.position().top + (size[1] / 2) + options.offset < titlebar.outerHeight(TRUE))
corner.y === TOP || (corner.y === CENTER && this.element.position().top + (this.size[1] / 2) + options.offset < titlebar.outerHeight(TRUE))
);
},

Expand Down

0 comments on commit ef3a37b

Please sign in to comment.