"use strict"; if (ismobile) { $(".business .t1").on("click", function (e) { e.preventdefault(); $("body, html").css("overflow", "hidden"); $(".business-modal__content").html($(this).parents(".a").get(0).outerhtml); $(".business-modal").addclass("show"); }); $(".business-modal__close").on("click", function () { $("body, html").css("overflow", ""); $(".business-modal").removeclass("show"); }); } if (!ismobile) { $(".business .iscroll").each(function () { var iscroll = new iscroll(this, { scrollbars: true, bounce: true, mousewheel: true, shrinkscrollbars: true }); if (!iscroll.maxscrolly) { $(this).addclass("no-scroll"); } }); }