Repository URL to install this package:
|
Version:
0.0.8 ▾
|
$(document).ready(function() {
$('form').ajaxForm();
$('.collapsible-section').children(':first-child').click(function () {
$(this).next().toggle();
$(this).children('.toggle-button').toggle();
});
$('.collapsible-list > li > span').click(function (e) {
e.stopPropagation();
$(this).next().toggle();
$(this).children('.toggle-button').toggle();
});
});