From 975dd38482945e10cf0ea2f020856653298d5c28 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 2 Jul 2013 11:48:27 +0800 Subject: Bug 888806: Bugzilla login field should use "placeholder" HTML5 attribute instead of JavaScript --- js/global.js | 35 ++++--------------- .../en/default/account/auth/login-small.html.tmpl | 40 ++-------------------- template/en/default/index.html.tmpl | 39 +++------------------ 3 files changed, 13 insertions(+), 101 deletions(-) diff --git a/js/global.js b/js/global.js index b62d7b9a7..1aac910c3 100644 --- a/js/global.js +++ b/js/global.js @@ -16,8 +16,6 @@ * */ -var mini_login_constants; - function show_mini_login_form( suffix ) { var login_link = document.getElementById('login_link' + suffix); var login_form = document.getElementById('mini_login' + suffix); @@ -67,13 +65,10 @@ function hide_forgot_form( suffix ) { 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); + 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 by default. 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'); } @@ -82,33 +77,15 @@ function init_mini_login_form( suffix ) { } } -// 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; + if (mini_login.value != "" && mini_password.value != "") { + return true; + } else { + window.alert("You must provide the email address and password before logging in."); + return false; } - window.alert( mini_login_constants.warning ); - return false; } function set_language( value ) { diff --git a/template/en/default/account/auth/login-small.html.tmpl b/template/en/default/account/auth/login-small.html.tmpl index 216c4ed8a..220eb5f21 100644 --- a/template/en/default/account/auth/login-small.html.tmpl +++ b/template/en/default/account/auth/login-small.html.tmpl @@ -52,9 +52,9 @@ class="bz_login" name="Bugzilla_login" title="Login" - onfocus="mini_login_on_focus('[% qs_suffix FILTER js %]')" + placeholder="email address" > - [% IF Param('rememberlogin') == 'defaulton' || Param('rememberlogin') == 'defaultoff' @@ -75,41 +74,6 @@ [% END %] - [x] diff --git a/template/en/default/index.html.tmpl b/template/en/default/index.html.tmpl index 29bc9adb6..fa2a4d126 100644 --- a/template/en/default/index.html.tmpl +++ b/template/en/default/index.html.tmpl @@ -38,40 +38,13 @@ [% IF release %] @@ -144,10 +117,8 @@ YAHOO.util.Event.onDOMReady(onLoadActions); onsubmit="return checkQuicksearch(this);">
+ placeholder="Enter [% terms.abug %] number or some search terms" + title="Quick Search">