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 946397c commit aa140ebCopy full SHA for aa140eb
techniques/failures/F50.html
@@ -14,13 +14,13 @@
14
// blink "on" state
15
function show(){
16
document.getElementById("blink1").style.visibility = "visible";
17
- settime-out("hide()", 450);
+ window.setTimeout(hide, 450);
18
}
19
20
// blink "off" state
21
function hide(){
22
document.getElementById("blink1").style.visibility = "hidden";
23
- settime-out("show()", 450);
+ window.setTimeout(show, 450);
24
25
26
// kick it off
@@ -42,4 +42,4 @@
42
</section><section id="related"><h2>Related Techniques</h2><ul>
43
<li><a href="../client-side-script/SCR22">SCR22</a></li>
44
</ul></section>
45
-</body></html>
+</body></html>
0 commit comments