publ-echo-test 0.0.222 → 0.0.223
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.
@@ -199,7 +199,7 @@ var GridItem = function (_a) {
|
|
199
199
|
// MutationObserver 인스턴스 생성
|
200
200
|
var observer = new MutationObserver(callback);
|
201
201
|
// 관찰할 DOM 변이 설정
|
202
|
-
var config = { attributes: true,
|
202
|
+
var config = { attributes: true, characterData: true };
|
203
203
|
// 대상 노드와 설정으로 관찰 시작
|
204
204
|
observer.observe(targetNode, config);
|
205
205
|
// 정리 함수에서 MutationObserver 해제
|