Changeset 650 in tmcsimulator for trunk/webapps/common/js/displayutils.js
- Timestamp:
- 09/07/2022 12:22:34 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/webapps/common/js/displayutils.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/webapps/common/js/displayutils.js
r643 r650 30 30 } 31 31 32 // Format the csv data into an HTML table 32 33 function formatTable(allRows, sortOrder) 33 34 { … … 35 36 if (sortOrder) // ascending order of time (most recent last) 36 37 { 37 // Format the csv data into an HTML table38 38 // Put the last log entry at the BOTTOM of the table 39 39 for (var singleRow = 0; singleRow <= allRows.length-1; singleRow++) … … 46 46 else // descending order of time (most recent first) 47 47 { 48 // Format the csv data into an HTML table49 48 // Put the last log entry at the TOP of the table 50 49 for (var singleRow = allRows.length-1; singleRow >= 0; singleRow--) … … 60 59 } 61 60 61 // Format a single row of fields into a table row 62 62 function formatRow(rowCells) 63 63 {
Note: See TracChangeset
for help on using the changeset viewer.
