Skip to content

Commit

Permalink
Add license for visualizations / graphics. (#1140)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneymbell committed May 28, 2020
1 parent ec8b86d commit a4f3ee2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/download/downloadModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ class DownloadModal extends React.Component {
x.push(this.createSummaryWrapper());
x.push("");
x.push(`${this.props.t("Data usage part 1")} A full list of sequence authors is available via <a href="https://nextstrain.org">nextstrain.org</a>.`);
x.push(`Visualizations are licensed under CC-BY.`);
x.push(`Relevant publications:`);
this.getRelevantPublications().forEach((pub) => {
x.push(`<a href="${pub.href}">${pub.author}, ${pub.title}, ${pub.journal} (${pub.year})</a>`);
Expand Down Expand Up @@ -191,7 +192,7 @@ class DownloadModal extends React.Component {
(<MetaIcon width={iconWidth} selected />), () => helpers.authorTSV(this.props.dispatch, filePrefix, this.props.tree)]);
}
buttons.push(
["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format.",
["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format; CC-BY licensed.",
(<PanelsGridIcon width={iconWidth} selected />), () => helpers.SVG(this.props.dispatch, filePrefix, this.props.panelsToDisplay, this.props.panelLayout, this.makeTextStringsForSVGExport())]
);
const buttonTextStyle = Object.assign({}, materialButton, {backgroundColor: "rgba(0,0,0,0)", paddingLeft: "10px", color: "white", minWidth: "300px", textAlign: "left" });
Expand Down

0 comments on commit a4f3ee2

Please sign in to comment.