';
document.querySelector('#copytext').value = textContent;
modal.showModal();
});
// Modal close functionality
const modal = document.querySelector('.republish-modal');
const closeBtn = document.querySelector('.republish-modal-close');
// Close button click
closeBtn.addEventListener('click', function() {
modal.close();
});
// Close on backdrop click
modal.addEventListener('click', function(e) {
if (e.target === modal) {
modal.close();
}
});
// Close on ESC key (this is usually built-in, but adding for safety)
modal.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
modal.close();
}
});
// Copy text button functionality
document.querySelector('.copy-text-button').addEventListener('click', async function() {
const textarea = document.querySelector('#copytext');
const text = textarea.value;
try {
// Try modern Clipboard API first
if (navigator.clipboard && window.isSecureContext) {
await navigator.clipboard.writeText(text);
this.textContent = 'Copied!';
} else {
// Fallback for older browsers
textarea.select();
document.execCommand('copy');
this.textContent = 'Copied!';
}
// Reset button text after 2 seconds
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
} catch (err) {
console.error('Failed to copy text: ', err);
// Fallback to selection if copying fails
textarea.select();
this.textContent = 'Text selected';
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
}
});
});
Aspen Ford, an award-winning investigative reporter with experience in data projects and collaborative journalism, will be joining InvestigateWest in January as the organization’s first Roy W. Howard fellow.
Ford is the latest addition to the growing staff at InvestigateWest, a nonprofit dedicated to change-making investigative journalism in the Pacific Northwest. A recent graduate of the master’s program in investigative reporting at Arizona State University’s Walter Cronkite School of Journalism and Mass Communication, she brings experience in reporting on Indigenous affairs, the environment and police accountability to the news staff.
“We’re thrilled that Aspen is coming to InvestigateWest,” Executive Director Jacob Fries said. “As a young reporter, she’s already distinguished herself with exceptional work.”
Ford is one of five investigative journalists named by the Scripps Howard Foundation as Howard fellows for 2025, each of whom will spend a year working at nonprofit newsrooms around the country. The fellowships honor Roy W. Howard, a former chairman of the Scripps Howard newspaper chain and a lifelong journalist who reported stories from around the globe. The fellowships are awarded annually to graduates of the Howard Centers for Investigative Journalism at ASU and the University of Maryland.
Ford also holds a bachelor’s degree from Northeastern State University in Oklahoma with a double major in Spanish and media studies. She began her journalism career at The Oklahoman and is a member of the United Keetoowah Band of Cherokee Indians.
InvestigateWest was formed in 2009 by a group of journalists laid off by the Seattle Post-Intelligencer, with a mission of preserving the kind of challenging, labor-intensive investigative journalism that has been in decline. InvestigateWest’s reporting has led to scores of reforms in the Pacific Northwest, including a dozen state laws meant to protect the environment, workers and foster children.