1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 20:21:50 +02:00

Fix sponsor opener

This commit is contained in:
Kamran Ahmed
2023-04-19 00:57:41 +01:00
parent 03f9fa51ff
commit 3132a39816
2 changed files with 2 additions and 3 deletions

View File

@@ -1,12 +1,12 @@
import { sponsorHidden } from '../../stores/page'; import { sponsorHidden } from '../../stores/page';
function showHideSponsor(isHidden) { function showHideSponsor(shouldHide) {
const ad = document.querySelector('#sponsor-ad'); const ad = document.querySelector('#sponsor-ad');
if (!ad) { if (!ad) {
return; return;
} }
if (isHidden) { if (shouldHide) {
ad.classList.add('hidden'); ad.classList.add('hidden');
ad.classList.remove('flex'); ad.classList.remove('flex');
} else { } else {

View File

@@ -84,7 +84,6 @@ export function TopicDetail() {
// Close the topic detail when user clicks outside the topic detail // Close the topic detail when user clicks outside the topic detail
useOutsideClick(topicRef, () => { useOutsideClick(topicRef, () => {
setIsActive(false); setIsActive(false);
sponsorHidden.set(false);
}); });
useKeydown('Escape', () => { useKeydown('Escape', () => {