InvestigateWest (investigatewest.org) is an independent news nonprofit dedicated to investigative journalism in the Pacific Northwest. Visit investigatewest.org/newsletters to sign up for weekly updates.
';
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);
}
});
});
It can’t be that simplistic, and yet, Matthew Preusch of the Portland Oregonian reports this morning that a few biologists are seeing signs that some salmon are evolving to survive in Northwest rivers that have been “radically altered” by dams. That includes postponing their migration to the sea until they are larger and better able to survive the hazardous journey to the Pacific. The scientists are studying chinook salmon that this month began spawning in Idaho’s Snake River.
But researchers are finding as many as a quarter of these chinook are staying put in the river for at least a year -- either at the mouth of the Clearwater River near Lewiston, Idaho, or further downstream as far as the Columbia River's estuary -- before heading to sea.
The backstory is that as fish numbers plummeted over the past decades, managers reacted by pumping out thousands of hatchery fish and created sheltering cold water pools behind the dams where the fish can shelter and grow over the summers. About a billion dollars have been spent in the effort on the Columbia and Snake rivers.
The researchers say the fish are evolving because enough generations of dam-living fish have occurred and the fish appear to be passing along the trait to their offspring. But other prominent researchers disagree, saying it’s too early to make that determination.
"We have to wait and see over a longer period time," said Howard Schaller, head of the U.S. Fish and Wildlife Service's Columbia River Fisheries Program Office. "It's an interesting piece of information, but there's a lot of uncertainty."
The story you just read is only possible because readers like you support our mission to uncover truths that matter. If you value this reporting, help us continue producing high-impact investigations that drive real-world change. Your donation today ensures we can keep asking tough questions and bringing critical issues to light. Join us — because fearless, independent journalism depends on you!
Sam Wolkenhauer ran anonymous accounts that generated thousands of dollars in subscriptions while posting pro-Russian commentary, slurs and Nazi imagery
Get the inside scoop in your inbox, free.
Subscribe to our weekly newsletters and never miss an investigation.