[phpcvsview-cvs-updates] phpcvsview phpcvsview.js,NONE,1.1
Status: Pre-Alpha
Brought to you by:
bcheesem
From: Brian C. <bch...@us...> - 2005-01-22 14:01:50
|
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; } |