1
0
Fork 0
forked from 0x2620/oxjs

when expanding or collapsing part of a split panel, do not immediately switch the resizebar's tooltip

This commit is contained in:
rlx 2012-04-23 08:29:37 +00:00
commit 43495de239
2 changed files with 12 additions and 5 deletions

View file

@ -158,7 +158,9 @@ Ox.Resizebar = function(options, self) {
);
self.options.collapsed = !self.options.collapsed;
that.css({cursor: getCursor()});
self.$tooltip && self.$tooltip.options({title: getTitle()});
self.$tooltip && self.$tooltip.hide(function() {
self.$tooltip.options({title: getTitle()});
});
}
}