Merge pull request #2538 from dewekk/fix-signup-config-1

가입 폼 순서 변경 시 하위 필드 값 초기화 문제 수정
This commit is contained in:
Kijin Sung 2025-04-28 21:42:02 +09:00 committed by GitHub
commit 24e90e43fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1299,7 +1299,7 @@ jQuery(function($){
position = {x:event.pageX, y:event.pageY};
offset = getOffset($tr.get(0), ofspar);
$clone = $tr.attr('target', true).clone(true).appendTo($table);
$clone = $tr.attr('target', true).clone(true).find('input').removeAttr('id name').end().appendTo($table);
// get colspan
cols = ($th=$table.find('thead th')).length;