Commit 89fb10a3682d2eacccab93ed4b8f4b5396aa8f93

Authored by Eugeny Galkovskiy
1 parent 5e50ab04

123

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
frontend/web/css/style.css
... ... @@ -2288,7 +2288,7 @@ p.right{text-align: right;}
2288 2288 padding: 0!important;
2289 2289 box-shadow:none;
2290 2290 }
2291   - .showmob .dropd_menu{
  2291 + .dropd_menu.showmob{
2292 2292 display:block!important;
2293 2293 }
2294 2294 .inline_dropb, .dropd_menu{
... ...
frontend/web/js/script.js
... ... @@ -127,7 +127,7 @@ $(document).ready(
127 127 $(this).parent().find(".container").toggleClass("showed");
128 128 });
129 129 $(".menu a").click(function(){
130   - $(this).toggleClass("showmob");
  130 + $(this).parent().find(".dropd_menu").toggleClass("showmob");
131 131 });
132 132 }
133 133 );
134 134 \ No newline at end of file
... ...