From 1cb7492dc4749484dbe7b5f593e64bdb89243cfe Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 May 2006 04:22:48 +0100 Subject: call parse_runtime_info from all_counters_callback --- functions.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'functions.js') diff --git a/functions.js b/functions.js index f7e298888..59684b023 100644 --- a/functions.js +++ b/functions.js @@ -568,11 +568,19 @@ function all_counters_callback() { return; } + debug("in all_counters_callback"); + var reply = xmlhttp_rpc.responseXML.firstChild; var counters = reply.firstChild; parse_counters(counters); + + var runtime = counters.nextSibling; + + if (runtime) { + getMainContext().parse_runtime_info(runtime); + } } catch (e) { exception_error("all_counters_callback", e); -- cgit v1.2.3