From ee15b2c166924cb1620094bcb3c5437ebc90442e Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 11 May 2017 00:31:30 -0700 Subject: [PATCH] Fix plotpane notice PlotlyJS actually plots to the plot pane, so the text was misleading. --- src/output.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output.jl b/src/output.jl index f3efd812..ec424d54 100644 --- a/src/output.jl +++ b/src/output.jl @@ -318,7 +318,7 @@ function setup_atom() # special handling for plotly... use PlotsDisplay function Media.render(pane::Atom.PlotPane, plt::Plot{PlotlyBackend}) display(Plots.PlotsDisplay(), plt) - s = "PlotPane turned off. The plotly and plotlyjs backends cannot render in the PlotPane due to javascript issues." + s = "PlotPane turned off. The plotly backend cannot render in the PlotPane due to javascript issues. Plotlyjs is similar to plotly and is compatible with the plot pane." Media.render(pane, Atom.div(Atom.HTML(s))) end end