Commit 3837aa6bd0befb6f403eaa7ef0a183c39db964eb
1 parent
3ad6c4ae
Exists in
master
and in
29 other branches
Fix the assets menu in scarletred theme
(ActionItem1529)
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
public/designs/themes/scarletred/header.rhtml
... | ... | @@ -8,11 +8,11 @@ |
8 | 8 | jQuery(function($) { |
9 | 9 | $("#site-title, #assets-menu").mouseover(function() { |
10 | 10 | clearTimeout( window.closeAssetsTimeout ); |
11 | - $("#assets-menu").slideDown("slow"); | |
11 | + $("#assets-menu").slideDown(400); | |
12 | 12 | }); |
13 | 13 | $("#site-title, #assets-menu").mouseout(function() { |
14 | 14 | window.closeAssetsTimeout = |
15 | - setTimeout( '$("#assets-menu").slideUp("slow")', 500 ); | |
15 | + setTimeout( function() { $("#assets-menu").slideUp(400); }, 500 ); | |
16 | 16 | }); |
17 | 17 | }); |
18 | 18 | </script> | ... | ... |