케이스 소개 since 2016
function resizeResponsive(){var nWidth = window.innerWidth;if(nWidth>=1200){jQuery(".mb-desktop").removeClass("mb-desktop").addClass("mb-desktop-large");jQuery(".mb-tablet").removeClass("mb-tablet").addClass("mb-desktop-large");jQuery(".mb-mobile").removeClass("mb-mobile").addClass("mb-desktop-large");}else if(nWidth>=992){jQuery(".mb-desktop-large").removeClass("mb-desktop-large").addClass("mb-desktop");jQuery(".mb-tablet").removeClass("mb-tablet").addClass("mb-desktop");jQuery(".mb-mobile").removeClass("mb-mobile").addClass("mb-desktop");}else if(nWidth>=768){jQuery(".mb-desktop-large").removeClass("mb-desktop-large").addClass("mb-tablet");jQuery(".mb-desktop").removeClass("mb-desktop").addClass("mb-tablet");jQuery(".mb-mobile").removeClass("mb-mobile").addClass("mb-tablet");}else if(nWidth 0) { showConfirmPopup(check_count+"개의 항목을 삭제하시겠습니까?", {"board_action":"multi_delete"}, sendBoardListData); }else{ showAlertPopup({"code":"1000","message":"삭제할 항목을 선택해 주세요"}); } } function showMoveConfirm(type){ var check_count = jQuery(".mb-board input[name='check_array[]']").filter(":checked").length; if(check_count > 0) { if(type=="multi_copy"){ showConfirmPopup(check_count+"개의 항목을 복사하시겠습니까?", {"board_action":type}, sendBoardListData); }else if(type=="multi_move"){ showConfirmPopup(check_count+"개의 항목을 이동하시겠습니까?", {"board_action":type}, sendBoardListData); } }else{ if(type=="multi_copy"){ showAlertPopup({"code":"1000","message":"복사할 항목을 선택해 주세요"}); }else if(type=="multi_move"){...