From 9482a247e7722c98bebddeb113f30043d54129ac Mon Sep 17 00:00:00 2001 From: HMH Date: Sat, 23 Feb 2019 03:39:01 +0100 Subject: [PATCH] Remove 2 lines forgotten in 3c2cfa333c39b85155d6. --- src/output.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/output.jl b/src/output.jl index b3392cc5..fd37c10e 100644 --- a/src/output.jl +++ b/src/output.jl @@ -55,9 +55,7 @@ tex(fn::AbstractString) = tex(current(), fn) function html(plt::Plot, fn::AbstractString) fn = addExtension(fn, "html") io = open(fn, "w") - _use_remote[] = true show(io, MIME("text/html"), plt) - _use_remote[] = false close(io) end html(fn::AbstractString) = html(current(), fn)