I have the following in the template but it no longer works in 2.3. What is causing this to break?
Code:
Читать далее...
Code:
Код:
<xf:js>
$(".jf-wrapper").on("click", function(event) {
$(".jf-wrapper").addClass("is-active");
event.stopPropagation();
});
$(".jf-wrapper").on("click", function(event) {
event.stopPropagation();
});
$(document).on("click", function(event) {
$(".jf-wrapper").removeClass("is-active");
});
</xf:js>
Читать далее...