Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=glob, a=mkanat git-svn-id: svn://10.0.0.236/trunk@256306 18797224-902f-48f8-a5cc-f745e15eee43
62 lines
2.5 KiB
JavaScript
62 lines
2.5 KiB
JavaScript
/* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is the Bugzilla Bug Tracking System.
|
|
*
|
|
* Contributor(s): Guy Pyrzak <guy.pyrzak@gmail.com>
|
|
*
|
|
*/
|
|
|
|
var mini_login_constants;
|
|
|
|
function init_mini_login_form( suffix ) {
|
|
var mini_login = document.getElementById('Bugzilla_login' + suffix );
|
|
var mini_password = document.getElementById('Bugzilla_password' + suffix );
|
|
var mini_dummy = document.getElementById(
|
|
'Bugzilla_password_dummy' + suffix);
|
|
// If the login and password are blank when the page loads, we display
|
|
// "login" and "password" in the boxes
|
|
if (mini_login.value == "" && mini_password.value == "") {
|
|
mini_login.value = mini_login_constants.login;
|
|
YAHOO.util.Dom.addClass(mini_login, "bz_mini_login_help");
|
|
YAHOO.util.Dom.addClass(mini_password, 'bz_default_hidden');
|
|
YAHOO.util.Dom.removeClass(mini_dummy, 'bz_default_hidden');
|
|
}
|
|
}
|
|
|
|
// Clear the words "login" and "password" from the form when you click
|
|
// in one of the boxes. We clear them both when you click in either box
|
|
// so that the browser's password-autocomplete can work.
|
|
function mini_login_on_focus( suffix ) {
|
|
var mini_login = document.getElementById('Bugzilla_login' + suffix );
|
|
var mini_password = document.getElementById('Bugzilla_password' + suffix );
|
|
var mini_dummy = document.getElementById(
|
|
'Bugzilla_password_dummy' + suffix);
|
|
|
|
YAHOO.util.Dom.removeClass(mini_login, "bz_mini_login_help");
|
|
if (mini_login.value == mini_login_constants.login) {
|
|
mini_login.value = '';
|
|
}
|
|
YAHOO.util.Dom.removeClass(mini_password, 'bz_default_hidden');
|
|
YAHOO.util.Dom.addClass(mini_dummy, 'bz_default_hidden');
|
|
}
|
|
|
|
function check_mini_login_fields( suffix ) {
|
|
var mini_login = document.getElementById('Bugzilla_login' + suffix );
|
|
var mini_password = document.getElementById('Bugzilla_password' + suffix );
|
|
if( ( mini_login.value != "" && mini_password.value != "" ) &&
|
|
mini_login.value != mini_login_constants.login)
|
|
{
|
|
return true;
|
|
}
|
|
window.alert( mini_login_constants.warning );
|
|
return false;
|
|
}
|