Back to blog

Chairman Chaffetz: Cancel July 12 Hearing on Discriminatory Anti-LGBT Bill!

Equality Federation stands in strong opposition to the “First Amendment Defense Act,” known as FADA and has signed a coalition letter demanding the cancellation of the July 12th hearing for the legislation.

July 12 will mark the one-month anniversary of this tragedy. In the month since, Congress has not held a single hearing on the needs of the victims, their families, and survivors, or on ways to better protect the LGBT community from bias-motivated violence or discrimination. We are deeply disappointed to learn that the House Committee on Oversight and Government Reform plans to hold a hearing on a discriminatory, anti-LGBT bill known as the “First Amendment Defense Act” (H.R. 2802) on the one-month anniversary of this tragedy. We write to urge you to cancel this hearing.
Rather than focusing on legislation to protect LGBT people and others in America from harm, FADA would permit unprecedented taxpayer-funded discrimination against LGBT people. Among the legislation’s many harms, it could even allow any privately owned business to refuse to let a gay or lesbian employee take time off to care for their sick spouse, in violation of family and medical leave laws – a particularly appalling aspect given the many families currently caring for those who were injured in the Orlando shooting. A proposal like this only serves to harm a vulnerable community.

[embeddoc url=”http://www.equalityfederation.org/wp-content/uploads/2016/07/07-06-16-Sign-On-to-Chairman-Chaffetz-re-FADA-Hearing.pdf”]

/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });