Updated Branches:
  refs/heads/master 93e87a5b3 -> 1371764ab

Update breadcrumb hover effect

-Use 1s interval (instead of 2s) until showing panel

-Use .fadeOut on panel focus, for smoother transition


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/1371764a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/1371764a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/1371764a

Branch: refs/heads/master
Commit: 1371764abd2f4ef1ebd05b0632a79726d4241fca
Parents: 93e87a5
Author: Brian Federle <[email protected]>
Authored: Mon Jun 11 15:12:57 2012 -0700
Committer: Brian Federle <[email protected]>
Committed: Mon Jun 11 15:13:14 2012 -0700

----------------------------------------------------------------------
 ui/scripts/ui/widgets/cloudBrowser.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/1371764a/ui/scripts/ui/widgets/cloudBrowser.js
----------------------------------------------------------------------
diff --git a/ui/scripts/ui/widgets/cloudBrowser.js 
b/ui/scripts/ui/widgets/cloudBrowser.js
index a358742..a2c7bd6 100644
--- a/ui/scripts/ui/widgets/cloudBrowser.js
+++ b/ui/scripts/ui/widgets/cloudBrowser.js
@@ -397,8 +397,8 @@
         
         $hiddenPanels.addClass('mouseover-hidden');
         setTimeout(function() {
-          $('.mouseover-hidden').hide("slow");
-        } ,2000);
+          $('.mouseover-hidden').fadeOut('fast');
+        }, 1000);
       }
     }
   ));

Reply via email to