From 2722c70d30ade2b40a5c4cc3b777a89bb4cd67b0 Mon Sep 17 00:00:00 2001 From: Helmut Haensel Date: Wed, 20 May 2020 12:54:43 +0200 Subject: [PATCH] correct local file parameter to `file:///` --- src/backends/plotly.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index e2cb2448..22ddae4e 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -810,7 +810,7 @@ html_body(plt::Plot{PlotlyBackend}) = plotly_html_body(plt) const ijulia_initialized = Ref(false) function plotly_html_head(plt::Plot) - local_file = ("file://" * plotly_local_file_path) + local_file = ("file:///" * plotly_local_file_path) plotly = use_local_dependencies[] ? local_file : "https://cdn.plot.ly/plotly-latest.min.js"