diff --git a/secret/mineSweeper/counter.js b/secret/mineSweeper/counter.js deleted file mode 100644 index 8e9f78a..0000000 --- a/secret/mineSweeper/counter.js +++ /dev/null @@ -1,14 +0,0 @@ -'use strict' - -document.addEventListener('DOMContentLoaded', () => { - const bombsSlider = document.getElementById('bombs'); - const bombsValue = document.getElementById('bombsValue'); - - // Update the displayed number of bombs when the slider value changes - bombsSlider.addEventListener('input', () => { - bombsValue.textContent = bombsSlider.value; - }); - - // Initialize the displayed value on page load - bombsValue.textContent = bombsSlider.value; -}); diff --git a/secret/mineSweeper/index.html b/secret/mineSweeper/index.html index 22c9313..eabf508 100644 --- a/secret/mineSweeper/index.html +++ b/secret/mineSweeper/index.html @@ -1,44 +1,30 @@ -
- - -