We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb69037 commit 9dc802bCopy full SHA for 9dc802b
examples/html-starter-example/index.html
@@ -45,11 +45,11 @@
45
// Set an interval to change the text color every 2 seconds
46
setInterval(() => {
47
// Change the text color based on the value of isPurple
48
- helloWorldText.style.color = isPurple ? "purle" : "white";
+ helloWorldText.style.color = isPurple ? "purple" : "white";
49
// Toggle the boolean value
50
isPurple = !isPurple;
51
}, 2000);
52
</script>
53
</body>
54
55
-</html>
+</html>
0 commit comments