Warning: Can't use blame annotator:
svn blame failed on trunk/webapps/common/js/displayutils.js: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/trunk/webapps/common/js/displayutils.js @ 386

Revision 386, 361 bytes checked in by jdalbey, 7 years ago (diff)

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.

RevLine 
1/** Hide an html element given its id */
2function hideElementById(id)
3{
4    // hide the element by setting css attribute
5    document.getElementById(id).style.display = 'none'
6}
7
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}
15
Note: See TracBrowser for help on using the repository browser.