Ignore:
Timestamp:
Mar 30, 2006, 4:08:53 AM (18 years ago)
Author:
rvelices
Message:

NBM: check/uncheck all completely done by Javascript

NBM: add function make_index_absolute_url

NBM: add function get_user_notifications and simplified code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/scripts.js

    r858 r1114  
    99  {
    1010        formulaire.elements[i].checked = true;
     11  }
     12}
     13}
     14
     15function DeselectAll( formulaire )
     16{
     17len = formulaire.elements.length;
     18var i=0;
     19for( i = 0; i < len; i++)
     20{
     21  if ( formulaire.elements[i].type=='checkbox'
     22           && formulaire.elements[i].name != 'copie')
     23  {
     24        formulaire.elements[i].checked = false;
    1125  }
    1226}
     
    2741}
    2842
    29 function phpWGOpenWindow(theURL,winName,features) 
     43function phpWGOpenWindow(theURL,winName,features)
    3044{
    3145  window.open(theURL,winName,features);
Note: See TracChangeset for help on using the changeset viewer.