Right to Carry

Gun Rights Groups to Fight Seventh Circuit Semiautomatic Weapon Ruling

Reading Time: 3:19 min

The fight for gun rights is a never-ending quest for Second Amendment advocates. There is seldom a time when the guard can be let down or the diligent defense of…

View post

House Members Hold Round Table on ‘Nationwide Gun Emergency’

Reading Time: 1:30 min

Several House members held a discussion Monday on what participants called the “nationwide gun emergency.” The gathering of Democrats was led by Rep. Jamie Raskin (D-MD), who stated the purpose…

View post

Armed Female Defends Victim Shot in the Face

Reading Time: 1:37 min

A violent confrontation in North Carolina last week saw an armed and courageous female bystander intervene after a man had been shot in the face. According to the Shelby Police…

View post

Pennsylvania Lawmakers Eye New Restrictions on Lawful Gun Owners

Reading Time: 1:42 min

The prevailing wisdom of anti-gunners must be to throw enough random laws against the wall and hope that something ultimately causes a reduction in criminal violence. That certainly appears to…

View post

Armed Texas Store Owner Surprises Would-Be Robbers

Reading Time: 1:45 min

It’s getting to be old hat for a Texas Cash4Gold store owner as his Mesquite business has been targeted by would-be robbers three times in the past five years. The…

View post

Fifth Circuit Unanimously Strikes Down ‘Ghost Gun’ Rule

Reading Time: 3:23 min

More good news in favor of upholding Second Amendment rights poured in from the Fifth Circuit Court of Appeals on Thursday. The three-judge panel unanimously ruled against the Bureau 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>