mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Tooltips are now properly hidden if the element is removed from the dom.
This commit is contained in:
parent
0789ace879
commit
5c1d683e71
@ -19,6 +19,24 @@ Tooltip.prototype.getOptions = function(options) {
|
||||
return result;
|
||||
};
|
||||
|
||||
var onElementRemoved = function(event) {
|
||||
event.data.hide();
|
||||
};
|
||||
|
||||
var origShow = Tooltip.prototype.show;
|
||||
Tooltip.prototype.show = function() {
|
||||
origShow.call(this);
|
||||
|
||||
this.$element.on('remove', this, onElementRemoved);
|
||||
};
|
||||
|
||||
var origHide = Tooltip.prototype.hide;
|
||||
Tooltip.prototype.hide = function() {
|
||||
origHide.call(this);
|
||||
|
||||
this.$element.off('remove', onElementRemoved);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
appInitializer : function() {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user