Skip to content

Commit 4665d68

Browse files
committed
tick
1 parent 7832646 commit 4665d68

File tree

1 file changed

+1
-2
lines changed
  • 2-ui/2-events/01-introduction-browser-events/01-hide-other/solution.view

1 file changed

+1
-2
lines changed

2-ui/2-events/01-introduction-browser-events/01-hide-other/solution.view/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@
1414
<script>
1515
// Here it doesn't matter how we hide the text,
1616
// could also use style.display:
17-
document.getElementById('hider').onclick = function () {
17+
document.getElementById('hider').onclick = function() {
1818
document.getElementById('text').hidden = true;
1919
}
2020
</script>
2121
</body>
22-
2322
</html>

0 commit comments

Comments
 (0)