]> git.sesse.net Git - wloh/commitdiff
Fix scenario showing in Firefox.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 23 Apr 2012 21:00:21 +0000 (23:00 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 23 Apr 2012 21:00:21 +0000 (23:00 +0200)
www/index.pl

index 697470cdd75a6002c92ed6b2919bef3b15258007..fb4d8ce87034cfd2107729f76ef94c8720ca4c10 100755 (executable)
@@ -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);
 }