diff --git a/source/Ox.UI/js/Window/Tooltip.js b/source/Ox.UI/js/Window/Tooltip.js index dada6f03..dcb2e457 100644 --- a/source/Ox.UI/js/Window/Tooltip.js +++ b/source/Ox.UI/js/Window/Tooltip.js @@ -20,8 +20,8 @@ Ox.Tooltip = function(options, self) { .options(options || {}) .update({ title: function() { - that.html(value); - value === '' && that.detach(); + that.html(self.options.title); + self.options.title === '' && that.detach(); } }) .addClass('OxTooltip')