Showing
1 changed file
with
5 additions
and
0 deletions
@@ -35,6 +35,11 @@ $('#sidebar .nav .has-sub>a').click(function() { | @@ -35,6 +35,11 @@ $('#sidebar .nav .has-sub>a').click(function() { | ||
35 | $(".sidebar-minify-btn").click(function(){ | 35 | $(".sidebar-minify-btn").click(function(){ |
36 | $("#page-container").toggleClass("page-sidebar-minified"); | 36 | $("#page-container").toggleClass("page-sidebar-minified"); |
37 | }); | 37 | }); |
38 | +$(".dropdown").hover(function () { | ||
39 | + $(".dropdown-menu").show(); | ||
40 | +}, function () { | ||
41 | + $(".dropdown-menu").hide(); | ||
42 | +}); | ||
38 | 43 | ||
39 | /** | 44 | /** |
40 | * 切换店铺 | 45 | * 切换店铺 |
-
Please register or login to post a comment