include foldable.js (#50750)

This commit is contained in:
Emmanuel Cazenave 2021-02-01 18:03:10 +01:00
parent 211371a7c1
commit 01f2e2c657
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
(function () {
$(function () { /* foldable sections */
$('div#div_id_extra_senders.foldable').on('click', function() {
$(this).children('div.selector').toggleClass('folded');
});
});
})();