Gun Control

You Need A Gun Tonight But The Current Law Forces You To Wait A Week

Reading Time: 3:42 min

You Need A Gun Tonight But The Current Law Forces You To Wait A Week — and for too many Americans, that reality can mean the difference between life and…

View post

2A Advocates Praise Oklahoma’s Protection of Firearm Industry

Reading Time: 1:53 min

Firearm industry heavyweights heaped praise on Oklahoma Gov. Kevin Stitt (R) for signing a critical protection for Second Amendment rights into law last week. Senate Bill 500 explicitly bans Oklahoma…

View post

SAF Challenges Massachusetts’ Controversial Non-Resident Concealed Carry Permitting Process

Reading Time: 1:52 min

A consortium of gun rights advocates, led by the Second Amendment Foundation (SAF) and its partners, challenged Massachusetts’ onerous process for a non-resident obtaining a license to carry (LTC). Law-abiding…

View post

Report: DC Gun Permitting Obstacles Streamlined Under White House Crackdown

Reading Time: 3:26 min

Amid controversial federal efforts to increase public safety in the nation’s capital comes a new report detailing the reestablishment of Second Amendment rights.  According to Fox News, the White House’s…

View post

Illinois Mother Hides in Closet Before Fatally Shooting Alleged Intruder

Reading Time: 1:59 min

There are few scenarios that are more frightening than being a young mother at home with a baby when an armed stranger forces his way into the residence. This heart-pounding…

View post

Why Glock 19 Used to Be The Answer & Isn’t Anymore

Reading Time: 2:35 min

Why Glock 19 Used to Be The Answer & Isn’t Anymore is a debate that defines how far the concealed carry market has come. Once considered the gold standard of…

View post
<script>
  /*Source: https://github.com/Krzysztof-Antosik/Two-direction-Sticky-Sidebar*/
  
  // Verificar el ancho de pantalla al cargar y redimensionar
  function checkScreenWidth() {
    if (window.innerWidth <= 767) {
      // Si la pantalla es menor o igual a 676px, no ejecutar el código
      return;
    }

    const stickyElement = document.querySelector('.fb-sidebar__aside');
    const startPosition = stickyElement.getBoundingClientRect().top;

    let endScroll = window.innerHeight - stickyElement.offsetHeight - 500;
    let currPos = window.scrollY;
    let screenHeight = window.innerHeight;
    let stickyElementHeight = stickyElement.offsetHeight;
    let topGap = 40;
    let bottomGap = 40;

    setTimeout(() => {
      if (stickyElement.hasAttribute('data-top-gap')) {
        const dataTopGap = stickyElement.getAttribute('data-top-gap');
        topGap = dataTopGap === 'auto' ? startPosition : parseInt(dataTopGap);
      }

      if (stickyElement.hasAttribute('data-bottom-gap')) {
        bottomGap = parseInt(stickyElement.getAttribute('data-bottom-gap'));
      }
    }, 100);

    stickyElement.style.position = 'sticky';
    stickyElement.style.top = `${topGap}px`;
    stickyElement.style.height = 'fit-content';

    function positionStickySidebar() {
      endScroll = window.innerHeight - stickyElement.offsetHeight - bottomGap;
      const stickyElementTop = parseInt(stickyElement.style.top.replace('px', ''));

      if (stickyElementHeight + topGap + bottomGap > screenHeight) {
        if (window.scrollY < currPos) {
          if (stickyElementTop < topGap) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop >= topGap && stickyElementTop !== topGap) {
            stickyElement.style.top = `${topGap}px`;
          }
        } else {
          if (stickyElementTop > endScroll) {
            stickyElement.style.top = `${stickyElementTop + currPos - window.scrollY}px`;
          } else if (stickyElementTop < endScroll && stickyElementTop !== endScroll) {
            stickyElement.style.top = `${endScroll}px`;
          }
        }
      } else {
        stickyElement.style.top = `${topGap}px`;
      }
      currPos = window.scrollY;
    }

    function stickyElementToMe() {
      stickyElement.style.top = `${topGap}px`;
    }

    function updateSticky() {
      screenHeight = window.innerHeight;
      stickyElementHeight = stickyElement.offsetHeight;
      positionStickySidebar();
    }

    setTimeout(() => {
      window.addEventListener('resize', () => {
        currPos = window.scrollY;
        updateSticky();
      });

      document.addEventListener('scroll', updateSticky, {
        capture: true,
        passive: true
      });
    }, 1000);
  }

  // Verificar el ancho de pantalla al cargar y redimensionar
  window.addEventListener('load', checkScreenWidth);
  window.addEventListener('resize', checkScreenWidth);
</script>