Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix code sample bug #4238

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions techniques/failures/F50.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
// blink "on" state
function show(){
document.getElementById("blink1").style.visibility = "visible";
settime-out("hide()", 450);
window.setTimeout("hide()", 450);
}

// blink "off" state
function hide(){
document.getElementById("blink1").style.visibility = "hidden";
settime-out("show()", 450);
window.setTimeout("show()", 450);
}

// kick it off
Expand All @@ -42,4 +42,4 @@
</section><section id="related"><h2>Related Techniques</h2><ul>
<li><a href="../client-side-script/SCR22">SCR22</a></li>
</ul></section>
</body></html>
</body></html>