From 0122b1a6d77475b5943933af304e8109a515ad7a Mon Sep 17 00:00:00 2001 From: Gehad elrobey Date: Sun, 20 Jul 2014 22:42:18 +0200 Subject: [PATCH] HTML: rescale dive profile with page zoom in/out Rescale the dive profile view with page zooming in and out. Signed-off-by: Gehad elrobey Signed-off-by: Miika Turkia Signed-off-by: Dirk Hohndel --- theme/list_lib.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/theme/list_lib.js b/theme/list_lib.js index 7204746b8..0789714e1 100644 --- a/theme/list_lib.js +++ b/theme/list_lib.js @@ -1081,3 +1081,7 @@ function switchDives(e) } } } + +window.onresize = function(event) { + plot1.replot( { resetAxes: true } ); +};