Commit 47ef95dc25dbcac57393f43149409425e5840cbb
1 parent
2aefbc7c
V
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
frontend/web/js/script.js
... | ... | @@ -469,6 +469,7 @@ $('.phone_control, .phone_placeholder').click( |
469 | 469 | function(){ |
470 | 470 | $('.menu_block_center').css({display:'none'}); |
471 | 471 | $('.menu_block_center1').css({display:'block'}); |
472 | + $('.menus_search_down').css({display: 'block'}); | |
472 | 473 | $('.menu_search_down .input_search').find('input').focus(); |
473 | 474 | |
474 | 475 | }); |
... | ... | @@ -539,7 +540,9 @@ $('.active_menu').hover(function(){ |
539 | 540 | $('#auto_staff').css({'background-color':'#6b84b5'}); |
540 | 541 | $('#auto_staff').find('a').css({'color':'#fff'}); |
541 | 542 | }); |
542 | - | |
543 | + $('.menu_block_center2 #main_seacrh').click(function(){ | |
544 | + $('.menu_block_center2 .menu_search_down').css({display: 'block'}); | |
545 | + }); | |
543 | 546 | $('.menu_block_center2 .by_articul .menu_search_down').hover(function(){ |
544 | 547 | $(this).find('a:first-child').css({'color':'#333'}); |
545 | 548 | ... | ... |