We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 351110c commit 1cada55Copy full SHA for 1cada55
1 file changed
2-ui/2-events/03-event-delegation/2-sliding-tree/solution.view/index.html
@@ -59,7 +59,7 @@
59
for (let li of tree.querySelectorAll('li')) {
60
let span = document.createElement('span');
61
li.prepend(span);
62
- span.append(span.nextSibling); // move the text node into span
+ span.append(span.nextSibling); // 텍스트 노드를 span 안으로 옮깁니다.
63
}
64
65
// catch clicks on whole tree
0 commit comments