View the DQSD CVS repository here:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/

Update of /cvsroot/dqsd/dqsd
In directory sc8-pr-cvs1:/tmp/cvs-serv24946

Modified Files:
        defer_tools.js 
Log Message:
updated submitForm to call onsubmit if available otherwise just submits

Index: defer_tools.js
===================================================================
RCS file: /cvsroot/dqsd/dqsd/defer_tools.js,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** defer_tools.js      10 Jan 2003 07:24:46 -0000      1.24
--- defer_tools.js      24 Jan 2003 21:39:41 -0000      1.25
***************
*** 86,90 ****
        w.history.back(1);
      }
!     form.submit();
    }
  
--- 86,94 ----
        w.history.back(1);
      }
!     if (typeof form.onsubmit == "function") {
!       form.fireEvent("onsubmit");
!     } else {
!       form.submit();
!     }
    }
  




-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
DQSD-CVS mailing list
https://lists.sourceforge.net/lists/listinfo/dqsd-cvs
DQSD CVS repository:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/

Reply via email to