NBM: check/uncheck all completely done by Javascript

NBM: add function make_index_absolute_url

NBM: add function get_user_notifications and simplified code

git-svn-id: http://piwigo.org/svn/trunk@1114 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2006-03-30 02:08:53 +00:00
parent 4d322701de
commit 27cc75cade
3 changed files with 192 additions and 191 deletions
+15 -1
View File
@@ -12,6 +12,20 @@ for( i = 0; i < len; i++)
}
}
function DeselectAll( formulaire )
{
len = formulaire.elements.length;
var i=0;
for( i = 0; i < len; i++)
{
if ( formulaire.elements[i].type=='checkbox'
&& formulaire.elements[i].name != 'copie')
{
formulaire.elements[i].checked = false;
}
}
}
function Inverser( formulaire )
{
len = formulaire.elements.length;
@@ -26,7 +40,7 @@ for( i=0; i<len; i++)
}
}
function phpWGOpenWindow(theURL,winName,features)
function phpWGOpenWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}