# HG changeset patch # User dukebody # Date 1256556378 -3600 # Node ID fefa45ccffc0f7baaed78fe85de60048f185bba9 # Parent 17c8e09ddd2b02d6a466b3fe49bc64d3aa19257b Place comments widget outside the element to avoid layout issues. diff -r 17c8e09ddd2b -r fefa45ccffc0 web/javascript/hsbook.js --- a/web/javascript/hsbook.js Mon Oct 26 12:19:54 2009 +0100 +++ b/web/javascript/hsbook.js Mon Oct 26 12:26:18 2009 +0100 @@ -66,7 +66,7 @@ $(this).append(loading($(this).attr("id"))); }); $("table[@id].equation").each(function() { - $(this).append(loading($(this).attr("id"))); + $(this).after(loading($(this).attr("id"))); }); $("pre[@id]").each(function() { $(this).after(loading($(this).attr("id")));