From 0f4b31774a8dbd9015628cc6f53a8bf08ca82222 Mon Sep 17 00:00:00 2001 From: Dennis Siemensma Date: Sat, 3 Apr 2021 00:56:53 +0200 Subject: [PATCH] Animate graph help intro --- dsmr_frontend/templates/dsmr_frontend/live-graphs.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dsmr_frontend/templates/dsmr_frontend/live-graphs.html b/dsmr_frontend/templates/dsmr_frontend/live-graphs.html index dc8af07a3..29829886d 100644 --- a/dsmr_frontend/templates/dsmr_frontend/live-graphs.html +++ b/dsmr_frontend/templates/dsmr_frontend/live-graphs.html @@ -286,8 +286,8 @@ // When clicked, show all help tooltips. $("a.graph_controls_help_trigger").click(function(){ - $(".graph_controls_help").show(); - $("a.graph_controls_help_trigger").hide(); + $("a.graph_controls_help_trigger").fadeOut(500); + $(".graph_controls_help").fadeIn(1500); return false; });