/*モーダル ----------------------------------------------------*/ function modalControl(){ var u = new EPOS_CARD.Util(); //タブ切り替え本体 var $elm = $(".js-index-modal"); if($elm.length === 0){ return false; } if(!u.isRangeSP()){ $elm.colorbox({ inline: true, innerWidth: "auto", innerHeight: "auto", maxWidth: "100%", maxHeight: "100%", fixed: true }); } else { $elm.colorbox({ inline: true, width: "98%", innerHeight: "auto", maxHeight: "100%", fixed: true }); } } /*init ----------------------------------------------------*/ //DOM Init j$(function(){ modalControl(); });