define("/Assets/enp/v2/js/ebg-module/ebg-module-architecture.js", function (require, factory) { if ($('.ebg-module-architecture .box .right').length > 0) { var winw = $(window).width(); $(window).on("resize", function () { var curwinw = $(window).width(); if (curwinw != winw) { if (winw > 920) { init(); } winw = curwinw; } }) function init() { var h = 0; var itime = setInterval(function () { var curh = $('.ebg-module-architecture .box .pic').height(); if (h != 0 && h == curh) { clearInterval(itime); } h = curh; }, 1000); $('.ebg-module-architecture .box .right').height($('.ebg-module-architecture .box .pic').height()); } if (winw > 920) { init(); } } });