Adam Lyon
Results
1
comments of
Adam Lyon
This seems to be working for me: ``` $(".offcanvas").on("show.bs.offcanvas", function () { $("body").css("overflow", "hidden"); $("body").on("touchmove.bs", function (e) { if (!$(e.target).closest(".offcanvas")) { e.preventDefault(); e.stopPropagation(); } }); }); $(".offcanvas").on("hidden.bs.offcanvas", function () {...