From Thornhill S.S.
About
Started the grind on 2021-10-19.
Alt account of Mystical.
// script for expandable comments by Mystical
$(function() {
$('.comments').hide();
$('.fa-comments').removeClass('fa-comments').addClass('fa-chevron-right fa-fw');
$('#comments h2').addClass('toggle').click(function() {
$(this).toggleClass('open');
$('.comments').slideToggle();
});
});