Merge pull request #507 from jaugustin/fix-side-effect-list-expand-btn

fix side effect introduce with list/expand buttons
This commit is contained in:
William Durand 2014-09-06 11:32:20 +02:00
commit f503b73dc4

View File

@ -130,7 +130,7 @@
section.addClass('active');
}
section.find('.section-list').slideDown('fast');
section.find('.content').slideUp('fast');
section.find('.operation > .content').slideUp('fast');
});
$('.action-expand').on('click', function(){
@ -139,7 +139,7 @@
section.addClass('active');
}
$(section).find('ul').slideDown('fast');
$(section).find('.content').slideDown('fast');
$(section).find('.operation > .content').slideDown('fast');
});
{% if enableSandbox %}