<xf:js>
$(function () {
"use strict";
$(".message-signature").click(function () {
if ($(this).hasClass("expanded-signature"))
$(this).removeClass("expanded-signature");
else
$(this).addClass("expanded-signature");
$('.bbCodeSpoiler').click(function(e) {e.stopPropagation();})
});
});
</xf:js>