Re-applying change to code from r106516
authorKrinkle <krinkle@users.mediawiki.org>
Sun, 8 Jan 2012 00:24:25 +0000 (00:24 +0000)
committerKrinkle <krinkle@users.mediawiki.org>
Sun, 8 Jan 2012 00:24:25 +0000 (00:24 +0000)
* Diff in r106516 didn't show that these changes where made due to new file creation, fixed now.
* Follows-up r108339

resources/mediawiki.special/mediawiki.special.changeemail.js

index 9918698..6b4ed81 100644 (file)
@@ -27,9 +27,9 @@ var updateMailValidityLabel = function( mail ) {
 // Lame tip to let user know if its email is valid. See bug 22449
 // Only bind once for 'blur' so that the user can fill it in without errors
 // After that look at every keypress for direct feedback if it was invalid onblur
-$( '#mw-input-wpemailaddress' ).one( 'blur', function() {
+$( '#wpNewEmail' ).one( 'blur', function() {
        if ( $( '#mw-emailaddress-validity' ).length === 0 ) {
-               $(this).after( '<label for="mw-input-wpemailaddress" id="mw-emailaddress-validity"></label>' );
+               $(this).after( '<label for="wpNewEmail" id="mw-emailaddress-validity"></label>' );
        }
        updateMailValidityLabel( $(this).val() );
        $(this).keyup( function() {