publ-echo-test 0.0.276 → 0.0.277
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.
@@ -246,7 +246,9 @@ var GridItem = function (_a) {
|
|
246
246
|
// 관찰할 DOM 변이 설정
|
247
247
|
var config = { attributes: true, characterData: true };
|
248
248
|
// 대상 노드와 설정으로 관찰 시작
|
249
|
-
|
249
|
+
setTimeout(function () {
|
250
|
+
observer.observe(targetNode, config);
|
251
|
+
}, 0);
|
250
252
|
// 정리 함수에서 MutationObserver 해제
|
251
253
|
return function () {
|
252
254
|
if (targetNode.id !== "contentslist-box") {
|