Changeset 386 in tmcsimulator for trunk/webapps/common/js


Ignore:
Timestamp:
04/20/2019 12:11:46 PM (7 years ago)
Author:
jdalbey
Message:

Updated LoadEvents?.js to parse all event types except CMS_EVALUATION. Modified build.xml to write svn revision number to webapps/common/js so the revision number can be included in the web page title of our apps. Write ShowRevision? function in displayutils.js to do that.

File:
1 edited

Legend:

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

    r373 r386  
    66} 
    77 
     8// Show the subversion revision number in the page title 
     9function showRevision() 
     10{ 
     11    var title = document.title; 
     12    title = title + revisionNumber; 
     13    document.title = title; 
     14} 
    815 
Note: See TracChangeset for help on using the changeset viewer.