Repository: cloudstack Updated Branches: refs/heads/master 5d19a936a -> f34f00137
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. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f34f0013 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f34f0013 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f34f0013 Branch: refs/heads/master Commit: f34f001371c376cc235ccfaf96900cd9dbd141b5 Parents: 5d19a93 Author: Brian Federle <[email protected]> Authored: Tue Mar 18 14:31:04 2014 -0700 Committer: Brian Federle <[email protected]> Committed: Tue Mar 18 14:31:28 2014 -0700 ---------------------------------------------------------------------- ui/scripts/ui/widgets/listView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f34f0013/ui/scripts/ui/widgets/listView.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui/widgets/listView.js b/ui/scripts/ui/widgets/listView.js index 2a663a1..c4b91d3 100644 --- a/ui/scripts/ui/widgets/listView.js +++ b/ui/scripts/ui/widgets/listView.js @@ -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) {
