publ-echo-test 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -71,7 +71,7 @@ var GridItem = function (_a) {
|
|
71
71
|
// MutationObserver 인스턴스 생성
|
72
72
|
var observer = new MutationObserver(callback);
|
73
73
|
// 관찰할 DOM 변이 설정
|
74
|
-
var config = { characterData: true, attributes: true };
|
74
|
+
var config = { characterData: true, attributes: true, subtree: true };
|
75
75
|
// 대상 노드와 설정으로 관찰 시작
|
76
76
|
observer.observe(targetNode, config);
|
77
77
|
// 정리 함수에서 MutationObserver 해제
|