Version User Scope of changes
Oct 29 2008, 2:03 PM EDT (current) superwomyn 1 word added, 1 word deleted
Oct 29 2008, 2:03 PM EDT superwomyn 1 word added, 1 word deleted

Changes

Key:  Additions   Deletions

void WPCAPI.processLogin()
This method is overridable.

This method handles login requests. It must be overloaded,overridden, even if it simply redirects the user to a separate login page.


Usage


Example 1
if( window.WPCAPI ) {
WPCAPI.processLogin = function() {
location.href = "http://www.mysite.com/login.html";
};
}

Example 2
if( window.WPCAPI ) {
WPCAPI.processLogin = function() {
revealLoginWindow();
document.getElementById(
"username").focus();
};
}