From 81d7be7e4564e0c32e2a17e49b3ad33b75a94b46 Mon Sep 17 00:00:00 2001 From: Piotr Mitros Date: Sat, 28 Jan 2012 13:29:49 -0500 Subject: [PATCH] Schematic wiki bug fixed --- simplewiki_base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simplewiki_base.html b/simplewiki_base.html index cc33a52d42..465eff17f9 100644 --- a/simplewiki_base.html +++ b/simplewiki_base.html @@ -54,7 +54,7 @@ id = $(this).attr("id"); name = id.substring(17); //alert(name); - $("#"+id).load("/edit_circuit/"+name); + $("#"+id).load("/edit_circuit/"+name, function(){update_schematics();}); f=this; }); @@ -65,7 +65,7 @@ $(this).parent().toggleClass("active"); }); - update_schematics();}); + });