diff --git a/src/main/webapp/resources/js/fims/cmmn/fims-componentization.js b/src/main/webapp/resources/js/fims/cmmn/fims-componentization.js index fd4a8d5a..1f62d6a8 100644 --- a/src/main/webapp/resources/js/fims/cmmn/fims-componentization.js +++ b/src/main/webapp/resources/js/fims/cmmn/fims-componentization.js @@ -180,23 +180,6 @@ function fnMakeRowSpinner(tableRowEl, upBtnEl, downBtnEl, scrollEl, validFunc){ } -/************************************************************************** -* 행 번호 표시 테이블 -**************************************************************************/ -function fnMakeRowNumberingTable(tbody, markerFinder, markerSetter){ - - var moCallbackFunc = function(mutationList, observer){ - var target = mutationList[0].target; - - $(target).find("tr").each(function(idx, item){ - markerSetter(markerFinder(item),idx+1); - }); - }; - var mo = new MutationObserver(moCallbackFunc); - mo.observe(tbody, {childList : true}); -} - - /************************************************************************** * 단일 업로드 이미지 뷰어 **************************************************************************/