fix(curriculum): update JS file reference in setTimeout lecture HTML (#64504)

This commit is contained in:
walker1461 2025-12-11 11:52:10 -05:00 committed by GitHub
parent 287ef356b8
commit 2d3f436bb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -106,7 +106,7 @@ With that code, the `setTimeout()` will not run at all. So, a more elegant way t
```html
<h1>Cancel Timeout Example</h1>
<button id="cancelButton">Cancel Timeout</button>
<script src="script.js"></script>
<script src="index.js"></script>
```
```js