hgbook
diff web/support/javascript/hsbook.js @ 907:c5a5ba58858e
Fix mistakenly broken function call.
author | dukebody <dukebody@gmail.com> |
---|---|
date | Mon Oct 26 20:29:09 2009 +0100 (2009-10-26) |
parents | 92f13a597d93 |
children | b25f69ea9d4c |
line diff
1.1 --- a/web/support/javascript/hsbook.js Mon Oct 26 20:21:00 2009 +0100 1.2 +++ b/web/support/javascript/hsbook.js Mon Oct 26 20:29:09 2009 +0100 1.3 @@ -66,7 +66,7 @@ 1.4 $(this).append(loading($(this).attr("id"))); 1.5 }); 1.6 $("table[@id].equation").each(function() { 1.7 - $(this).after(loading_equation($(this).attr("id"))); 1.8 + $(this).after(loading($(this).attr("id"))); 1.9 }); 1.10 $("pre[@id]").each(function() { 1.11 $(this).after(loading($(this).attr("id")));