in public/javascripts/app/controllers/SnapshotContentCtrl.js [104:116]
this.copyJSON = function() {
const sillyHacks = document.createElement("textarea");
sillyHacks.value = $scope.jsonContent;
document.body.appendChild(sillyHacks);
sillyHacks.focus();
sillyHacks.select();
document.execCommand("copy");
document.body.removeChild(sillyHacks);
$scope.copyButtonLabel = "Copied!";
}