Parent Directory
|
Revision Log
|
Revision Graph
fixing fatal bugs with some PHP versions and changing .mysql file to .install file for 4.7
| 1 | // $Id: $ |
| 2 | function toggleVisibility(element) { |
| 3 | st = document.getElementById(element).style; |
| 4 | if (st) { |
| 5 | // Firefox vs IE: 'block' display tables wrong in Firefox, use 'table' instead', but IE doesn't support 'table'. thus display='' works in both |
| 6 | st.display = st.display=='none'? '':'none'; |
| 7 | }else{ |
| 8 | alert('didnt find object'); |
| 9 | } |
| 10 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |