remove const in plotlyjs

This commit is contained in:
Daniel Schwabeneder 2020-04-26 20:16:31 +02:00
parent 275738e7ea
commit 5132bebc7f

View File

@ -19,14 +19,12 @@ end
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
const _plotlyjs_mimeformats = Dict( for (mime, fmt) in (
"application/pdf" => "pdf", "application/pdf" => "pdf",
"image/png" => "png", "image/png" => "png",
"image/svg+xml" => "svg", "image/svg+xml" => "svg",
"image/eps" => "eps", "image/eps" => "eps",
) )
for (mime, fmt) in _plotlyjs_mimeformats
@eval _show(io::IO, ::MIME{Symbol($mime)}, plt::Plot{PlotlyJSBackend}) = PlotlyJS.savefig(io, plotlyjs_syncplot(plt), format = $fmt) @eval _show(io::IO, ::MIME{Symbol($mime)}, plt::Plot{PlotlyJSBackend}) = PlotlyJS.savefig(io, plotlyjs_syncplot(plt), format = $fmt)
end end