/[drupal]/contributions/modules/tasks/tasks_view.js
ViewVC logotype

Contents of /contributions/modules/tasks/tasks_view.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Wed Apr 5 16:20:27 2006 UTC (3 years, 7 months ago) by jakeg
Branch: MAIN
CVS Tags: DRUPAL-5--2-0, DRUPAL-5--1-0, DRUPAL-4-7--1-0, DRUPAL-5--1-1, DRUPAL-5--2-0-ALPHA1, DRUPAL-5--1-3, DRUPAL-5--1-2, HEAD
Branch point for: DRUPAL-5--2, DRUPAL-5, DRUPAL-4-7
Changes since 1.1: +1 -0 lines
File MIME type: text/javascript
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