You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2014/03/18 22:31:35 UTC

git commit: updated refs/heads/master to f34f001

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 <br...@citrix.com>
Authored: Tue Mar 18 14:31:04 2014 -0700
Committer: Brian Federle <br...@citrix.com>
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) {