|
|
@@ -65,6 +65,17 @@
|
|
|
$('#exchangePop .select_custom.exchange_option').each(function() {
|
|
|
new sCombo($(this));
|
|
|
});
|
|
|
+
|
|
|
+ // 210805_ 추가 : 500 이하 일 경우, 영역 밖으로 옵션 리스트 노출
|
|
|
+ $('.modal.exchange_pop .select_custom .combo .select').on('click', function(e){
|
|
|
+ var exchangeContH = $('.modal.exchange_pop .pop_cont .form_wrap').outerHeight();
|
|
|
+
|
|
|
+ if (exchangeContH < 500){
|
|
|
+ $(".modal.exchange_pop .pop_cont").css("overflow","visible");
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ });
|
|
|
});
|
|
|
|
|
|
// 라디오 클릭 이벤트
|