diff --git a/deps/build.jl b/deps/build.jl new file mode 100644 index 00000000..2fef2af8 --- /dev/null +++ b/deps/build.jl @@ -0,0 +1,8 @@ + +#TODO: download https://cdn.plot.ly/plotly-latest.min.js to deps/ if it doesn't exist + +local_fn = joinpath(dirname(@__FILE__), "plotly-latest.min.js") +if !isfile(local_fn) + info("Cannot find deps/plotly-latest.min.js... downloading latest version.") + download("https://cdn.plot.ly/plotly-latest.min.js", local_fn) +end diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index 30c58cc2..c2ab93c9 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -1201,9 +1201,9 @@ function _display(plt::Plot{PyPlotBackend}) # display(plt.o) # end # PyPlot.ion() - PyPlot.pygui(false) + # PyPlot.pygui(false) plt.o[:show]() - PyPlot.pygui(true) + # PyPlot.pygui(true) # PyPlot.ioff() end