Back to blog

Save the Date for Summer Meeting 2015!

Every year, the Equality Federation Institute hosts its annual Summer Meeting, bringing together LGBT movement leaders from across the country to build skills and forge connections that strengthen the incredible work that’s happening in all the communities we call home.

Even as many of us are still energized from the 2014 Summer Meeting in Minneapolis, next year’s meeting will be here before you know it, and we want you to save the date!

For Summer Meeting 2015, we are headed to North Carolina from July 22 – 25, where our friends at Equality NC will serve as gracious hosts in the vibrant city of Charlotte.

The meeting will be held at the Westin Charlotte (601 South College Street, Charlotte, NC). At the beginning of next year, we will send out more detailed information, but for now, be sure to mark your calendars for July 22 – 25, 2015. We can’t wait to see you in Charlotte!

/* ============================================= 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 */ }); });