fix tooltip
This commit is contained in:
parent
91e1065aab
commit
266a0fa9df
1 changed files with 2 additions and 2 deletions
|
@ -20,8 +20,8 @@ Ox.Tooltip = function(options, self) {
|
||||||
.options(options || {})
|
.options(options || {})
|
||||||
.update({
|
.update({
|
||||||
title: function() {
|
title: function() {
|
||||||
that.html(value);
|
that.html(self.options.title);
|
||||||
value === '' && that.detach();
|
self.options.title === '' && that.detach();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.addClass('OxTooltip')
|
.addClass('OxTooltip')
|
||||||
|
|
Loading…
Reference in a new issue