2000
Markets Initiative, a joint project of FOCS, Sierra Club and Greenpeace, begins a market campaign to shift North American companies, including book and magazine publishers, to using paper that is free of ancient and endangered forests fibre. The organization becomes independent and later changes its name to Canopy.
function copyTextareaBtn() {
var copyTextarea = document.querySelector('.copyArea');
copyTextarea.focus();
copyTextarea.select();
try {
var successful = document.execCommand('copy');
var msg = successful ? 'successful' : 'unsuccessful';
console.log('Copying text command was ' + msg);
} catch (err) {
console.log('Unable to copy');
}
}
Share this: