From c5195dbce0be2337042964162d11eeed6db0c438 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Fri, 2 Mar 2018 06:28:25 -0800 Subject: [PATCH] Remove `"source" => "julia"` mapping (#633) This does not seem to be supported in JupyterLab 0.31. See this link [0] for more detail [0] https://github.com/sglyon/PlotlyJS.jl/issues/182#issue-300796032 --- src/inline.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inline.jl b/src/inline.jl index 52d2d927..2d0bf74d 100644 --- a/src/inline.jl +++ b/src/inline.jl @@ -40,7 +40,7 @@ for mime in ipy_mime function display(d::InlineDisplay, ::MIME{Symbol($mime)}, x) send_ipython(publish[], msg_pub(execute_msg, "display_data", - Dict("source" => "julia", # optional + Dict( "metadata" => metadata(x), # optional "data" => Dict($mime => limitstringmime(MIME($mime), x))))) end