/** *-------------------------------------------- * 関東harekei 共通 magazine form js *-------------------------------------------- */ jQuery(function($){ "use stric"; /** *-------------------------------------------- * responsive *-------------------------------------------- */ //ipn var ipn_init = function(cont_height){ setContentsHeight(cont_height); } var cont_height; cont_height = makeContentsHeight(); var resp = new Responsive(); resp.func(ipn_init(cont_height)); //リサイズ $(window).resize(function(){ cont_height = makeContentsHeight(); resp.func(ipn_init(cont_height)); }); /** *-------------------------------------------- * 2つのformの高さを取得して返す * * @return string *-------------------------------------------- */ function makeContentsHeight(){ var group_height = $(".form.group").height(); var shop_height = $(".form.shop").height(); var contents_height; if(group_height > shop_height){ contents_height = group_height; }else{ contents_height = shop_height; } return 150 + contents_height + "px"; } /** *-------------------------------------------- * 高さを設定 * * @return void *-------------------------------------------- */ function setContentsHeight(cont_height){ $(".magazine_cont").css("height",cont_height); } });