| 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.
|
| Line | |
|---|
| 1 | /** Hide an html element given its id */ |
|---|
| 2 | function 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 |
|---|
| 9 | function 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.