You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log("Let's try to append this console.log");
97
+
`;
98
+
}
99
+
</script>
100
+
</code>
101
+
102
+
The reason is that this is web component and it have to by hydrated -> some scripts have to be loaded and logic aplied to "dress" the components to build them in the browser dom and make them ready to interact.
103
+
104
+
Therefore we have to have way to wait for it to happen, so this is how it can be done using onLoad event:
Copy file name to clipboardExpand all lines: .agent/skills/bash-scripting/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ But to be specific:
25
25
26
26
When you have to go up from current script location use ../ or ../../ but the general target is to reach root directory of the project and then from there somewhere else then define ROOT by rerriving it from DIR and from that point use ROOT to reach wherever you need to reach.
27
27
28
-
WARNING: if you have no intetnion to use ROOT in your script then don't define it at all.
28
+
WARNING: if you have no intetnion to use DIR or ROOT in your script then don't define it at all.
0 commit comments