Fix incorrect context being passed to hosts->instances section

Fixes issue where, if an action is being performed from the quick view in the
'Instances' section, the old context will be passed when viewing instances in
the 'hosts' section, causing all instances to be displayed. This was caused
by the quickview tooltip still being in the DOM, even after closing it by
clicking an action.
This commit is contained in:
Brian Federle 2014-03-18 14:31:04 -07:00
parent 5d19a936a2
commit f34f001371
1 changed files with 1 additions and 1 deletions

View File

@ -1399,7 +1399,7 @@
},
onPerformAction: function() {
$tr.addClass('loading').find('td:last').prepend($('<div>').addClass('loading'));
$quickViewTooltip.hide();
$quickViewTooltip.detach();
},
onActionComplete: function() {
if (listViewArgs.onActionComplete) {