Update of /cvsroot/phpcvsview/phpcvsview
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29929
Added Files:
phpcvsview.js
Log Message:
Added javascript file for the client side code in relation to posting back the theme change request.
--- NEW FILE: phpcvsview.js ---
function postBackThemeChange(form)
{
var ddTheme=form.ThemeSelect.value;
var hfRequest=form.URLRequest.value;
if (hfRequest.indexOf("?") == -1)
{
newlocation=hfRequest+'?tm='+ddTheme;
}
else
{
newlocation=hfRequest+'&tm='+ddTheme;
}
location=newlocation;
}
|