Skip to content
Snippets Groups Projects
Commit ab129f17 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

Merge branch 'hotline#38993_fix_responsive_js' into 'hotline-master'

Hotline#38993 fix responsive js

See merge request !1674
parents 17b2544e b210c158
No related merge requests found
- ticket #38993 : Mode responsive : correction de l'ouverture des blocs
\ No newline at end of file
......@@ -12,11 +12,11 @@ $(document).ready(function() {
var enableWidgetButton = function() {
$("#col_wrapper .colGauche div.boite, .facette_outer").click(function(e) {
$("#col_wrapper .colGauche div.boite, .facette_outer").toggleClass('show_content');
$("#col_wrapper .colGauche div.boite, .facette_outer").not("#col_wrapper .colGauche div.boite *, .facette_outer *").click(function(e) {
$(this).toggleClass('show_content');
});
$("#col_wrapper .colGauche div.boite *").click(function(e) {
$("#col_wrapper .colGauche div.boite *, .facette_outer *").click(function(e) {
e.stopPropagation();
});
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment