diff --git a/src/tips/tips.js b/src/tips/tips.js index 8305be82..6904fbee 100644 --- a/src/tips/tips.js +++ b/src/tips/tips.js @@ -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)) ); },