Changeset 650 in tmcsimulator for trunk/webapps/common


Ignore:
Timestamp:
09/07/2022 12:22:34 PM (4 years ago)
Author:
jdalbey
Message:

Multiple updates - catchup webapps files I've been hoarding (sorry).

Location:
trunk/webapps/common/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/webapps/common/js/displayutils.js

    r643 r650  
    3030} 
    3131 
     32// Format the csv data into an HTML table 
    3233function formatTable(allRows, sortOrder) 
    3334{ 
     
    3536    if (sortOrder) // ascending order of time (most recent last) 
    3637    { 
    37         // Format the csv data into an HTML table 
    3838        // Put the last log entry at the BOTTOM of the table 
    3939        for (var singleRow = 0; singleRow <= allRows.length-1; singleRow++) 
     
    4646    else  // descending order of time (most recent first) 
    4747    { 
    48         // Format the csv data into an HTML table 
    4948        // Put the last log entry at the TOP of the table 
    5049        for (var singleRow = allRows.length-1; singleRow >= 0; singleRow--) 
     
    6059} 
    6160 
     61// Format a single row of fields into a table row 
    6262function formatRow(rowCells) 
    6363{ 
  • trunk/webapps/common/js/revision_number.dat

    r643 r650  
    11 
    2     var revisionNumber = "640"; 
     2    var revisionNumber = "649"; 
    33     
Note: See TracChangeset for help on using the changeset viewer.