Skip to content

Commit

Permalink
Remove send-to-cloud button from Plotly modebar
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsudipto committed Jul 31, 2023
1 parent a27ed42 commit 7ee6d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/plot_heatmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function makePlot(div_id, assayType, heatmapData) {
}
};

Plotly.plot(graphDiv, data, layout, {showSendToCloud:true});
Plotly.plot(graphDiv, data, layout, {showSendToCloud:false});
}

function plotHeatmap(div_id, response, assayType, score) {
Expand Down
2 changes: 1 addition & 1 deletion js/plot_lda.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function makePlot(div_id, dataMap, assayType) {
}
};

Plotly.plot(graphDiv, data, layout, {showSendToCloud:true});
Plotly.plot(graphDiv, data, layout, {showSendToCloud:false});
}

function plotLDA(div_id, response, assayType, score) {
Expand Down

0 comments on commit 7ee6d05

Please sign in to comment.