Right to Carry

Gun Rights Groups Sue USPS Over Prohibition of Mailing Handguns

Reading Time: 3:38 min

Gun Rights Groups Sue USPS Over Prohibition of Mailing Handguns is the title of a new legal battle launched by Second Amendment advocates who argue that current postal regulations unconstitutionally…

View post

Armed Washington Woman Kills Alleged Intruder

Reading Time: 3:11 min

The beauty of the Second Amendment is that it allows for the protection of every law-abiding adult when there is no other help coming. A solitary individual may even the…

View post

Good Guy with a Gun Halts Stabbing Outside Orlando Mall

Reading Time: 3:20 min

Exercising the right to keep and bear arms is oftentimes critical to more than just personal self-defense. In fact, the presence of an armed and law-abiding citizen can turn the…

View post

Phoenix Homeowner Kills Alleged Burglar While on Phone With 911

Reading Time: 3:22 min

One such incident occurred early Sunday morning in Arizona, when a Phoenix homeowner killed an alleged burglar while on the phone with 911—a powerful example of swift, legal action to…

View post

NSSF: June US Firearm Sales Stay Just Above 1M

Reading Time: 3:28 min

According to the National Shooting Sports Foundation (NSSF), June U.S. firearm sales stayed just above the 1 million mark, marking the 71st consecutive month of such figures. This benchmark matters…

View post

Sixth Circuit Rules in Favor of Couple Who Had Guns Seized

Reading Time: 2:53 min

The Sixth Circuit Rules in Favor of Couple Who Had Guns Seized in a major decision that offers hope to gun owners fighting back against government overreach. In Michigan’s Saginaw…

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>