From 6d49116f5f23903f2c3b9f615341bebf79f75880 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 23 Apr 2012 23:00:21 +0200 Subject: [PATCH] Fix scenario showing in Firefox. --- www/index.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/index.pl b/www/index.pl index 697470c..fb4d8ce 100755 --- a/www/index.pl +++ b/www/index.pl @@ -230,7 +230,7 @@ function showScenario(element_id, url) { var obj = document.getElementById(element_id); var parent = obj.parentElement; parent.removeChild(obj); - obj = obj.cloneNode(); + obj = obj.cloneNode(false); obj.data = url; parent.appendChild(obj); } -- 2.39.2