/** * インスタントメッセージ処理 * @returns {undefined} */ function instant_show_msg(inUrl) { // ダイアログ表示 $('#mdlInstant').modal({ backdrop : 'static', show : true }); // 閉じる処理 $('#mdlInstant').on('hidden.bs.modal', function (e) { // リダイレクト if(inUrl) { location.href = inUrl; } }); }