Skip to content

Commit

Permalink
html fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Aqua-sc committed Dec 26, 2024
1 parent 4a8c880 commit 7a28796
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toggle Images</title>
<title>Funko collection</title>
<style>
body {
background-color: black;
Expand Down Expand Up @@ -41,11 +41,11 @@
if (image1.classList.contains('visible')) {
image1.classList.remove('visible');
image2.classList.add('visible');
button.innerHTML = 'Show ungrouped';
button.innerHTML = 'Show grouped';
} else {
image2.classList.remove('visible');
image1.classList.add('visible');
button.innerHTML = 'Show grouped';
button.innerHTML = 'Show ungrouped';
}
}
</script>
Expand Down

0 comments on commit 7a28796

Please sign in to comment.