diff options
author | jokkedk <joakim@jokke.dk> | 2008-04-23 19:36:32 +0000 |
---|---|---|
committer | jokkedk <joakim@jokke.dk> | 2008-04-23 19:36:32 +0000 |
commit | 167d47b5e16bc45b5a9129159cfa7c94b533f092 (patch) | |
tree | bc3b09f37ec8027c5c3845e5b7ac604c2c163fd7 | |
parent | ee21af9c5ff9fee2f52a19ea062b806e5765f971 (diff) | |
download | webgrind-167d47b5e16bc45b5a9129159cfa7c94b533f092.zip webgrind-167d47b5e16bc45b5a9129159cfa7c94b533f092.tar.gz webgrind-167d47b5e16bc45b5a9129159cfa7c94b533f092.tar.bz2 |
- Fixed total function call header: not all calls are unique
- Inverted order of calls and called from listings
-rw-r--r-- | templates/index.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.phtml b/templates/index.phtml index 4562ae2..276df00 100644 --- a/templates/index.phtml +++ b/templates/index.phtml @@ -71,8 +71,8 @@ {'op':'callinfo_list', 'file':currentDataFile, 'functionNr':functionNr, 'costFormat':$("#costFormat").val()}, function(data){ - insertCallInfo(functionNr, 'sub_calls_table_', 'Calls', data.subCalls); insertCallInfo(functionNr, 'called_from_table_', 'Called From', data.calledFrom); + insertCallInfo(functionNr, 'sub_calls_table_', 'Calls', data.subCalls); if(data.calledByHost) $("#callinfo_area_"+functionNr).append('Called by script host'); @@ -231,7 +231,7 @@ <span id="data_file"></span> @ <span id="mtime"></span> </div> <div style="float:right;"> - <span id="invocation_sum"></span> different functions called in <span id="runtime_sum"></span> µs + <span id="invocation_sum"></span> functions called in <span id="runtime_sum"></span> µs </div> <div style="clear:both"></div> <table class="tablesorter" id="function_table" cellspacing="0"> |