Edgewall Software

source: trunk/htdocs/svntrac.js@ 1

Last change on this file since 1 was 1, checked in by Jonas Borgström, 20 years ago

Initial import

File size: 257 bytes
Line 
1function view_history() {
2 var history = document.getElementById("history");
3 if (history) {
4 if (history.style.visibility != "visible") {
5 history.style.visibility = "visible";
6 }
7 else {
8 history.style.visibility = "hidden";
9 }
10 }
11}
Note: See TracBrowser for help on using the repository browser.