Last change
on this file since 21850 was
539,
checked in by gweltas, 20 years ago
|
- Change of the picture page behavior to be able to open the full size image in a new window
- Minor modification for template migration
- Rename of script.js in scripts.js
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
622 bytes
|
Line | |
---|
1 | function SelectAll( formulaire ) |
---|
2 | { |
---|
3 | len = formulaire.elements.length; |
---|
4 | var i=0; |
---|
5 | for( i = 0; i < len; i++) |
---|
6 | { |
---|
7 | if ( formulaire.elements[i].type=='checkbox' |
---|
8 | && formulaire.elements[i].name != 'copie') |
---|
9 | { |
---|
10 | formulaire.elements[i].checked = true; |
---|
11 | } |
---|
12 | } |
---|
13 | } |
---|
14 | |
---|
15 | function Inverser( formulaire ) |
---|
16 | { |
---|
17 | len = formulaire.elements.length; |
---|
18 | var i=0; |
---|
19 | for( 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 = !formulaire.elements[i].checked; |
---|
25 | } |
---|
26 | } |
---|
27 | } |
---|
28 | |
---|
29 | function phpWGOpenWindow(theURL,winName,features) |
---|
30 | { |
---|
31 | window.open(theURL,winName,features); |
---|
32 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.