X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=js%2FpageProfile.js;h=b8d210e549d3cd2eac45b521419ef97e73fb9571;hb=1c6438b9ec36fcbf9af786e0ac9bd3eb871976f0;hp=4a86aee1ac16d2212c196f04b15080ba160b0757;hpb=35838780dce22af9f2dc80af9149a30a0433de0a;p=euphorik.git diff --git a/js/pageProfile.js b/js/pageProfile.js index 4a86aee..b8d210e 100755 --- a/js/pageProfile.js +++ b/js/pageProfile.js @@ -11,12 +11,13 @@ function PageProfile(client, formateur, util) PageProfile.prototype.contenu = function() { + // pourquoi ? return "" } PageProfile.prototype.charger = function() { - jQuery("#page").html(this.getHTML()) + $("#page").html(this.getHTML()) // en fonction du statut if (this.client.authentifie()) @@ -24,25 +25,30 @@ PageProfile.prototype.charger = function() else this.chargerLogin() - jQuery("#page form#profile").submit(function(){return false}) + $("#page form#profile").submit(function(){return false}) } PageProfile.prototype.chargerProfile = function() { var thisPage = this - jQuery("form#profile input.login").val(this.client.login) - jQuery("form#profile input.pseudo").val(this.client.pseudo) - jQuery("form#profile input.email").val(this.client.email) + $("form#profile input.login").val(this.client.login) + $("form#profile input.pseudo").val(this.client.pseudo) + $("form#profile input.email").val(this.client.email) + + $("form#profile select#affichagePseudo option").removeAttr("selected") + $("form#profile select#affichagePseudo option[value=" + this.client.nickFormat + "]").attr("selected", "selected") + - jQuery("#page form#profile button").click( + $("form#profile button").click( function() { - thisPage.client.pseudo = thisPage.formateur.filtrerInputPseudo(jQuery("form#profile input.pseudo").val()) - thisPage.client.email = jQuery("form#profile input.email").val() + thisPage.client.pseudo = thisPage.formateur.filtrerInputPseudo($("form#profile input.pseudo").val()) + thisPage.client.email = $("form#profile input.email").val() + thisPage.client.nickFormat = $("form#profile select#affichagePseudo option:selected").attr("value") - var password = jQuery("form#profile input.password").val() - var passwordRe = jQuery("form#profile input.passwordRe").val() + var password = $("form#profile input.password").val() + var passwordRe = $("form#profile input.passwordRe").val() if (password != "" || passwordRe != "") { if (password != passwordRe) @@ -68,10 +74,10 @@ PageProfile.prototype.chargerLogin = function() { var thisPage = this - jQuery("#page form#profile button").click( + $("#page form#profile button").click( function() { - if(!thisPage.client.connexionLogin(jQuery("form#profile input.login").val(), thisPage.util.md5(jQuery("form#profile input.password").val()))) + if(!thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val()))) thisPage.util.messageDialogue("Couple login/pass introuvable") else { @@ -85,7 +91,7 @@ PageProfile.prototype.chargerLogin = function() PageProfile.prototype.getHTML = function() { return '\ -
\ +\ \ \ \ @@ -108,6 +114,16 @@ return '\ \ \ \ + \ + \ + \ + \ ' : '') + '\ \ \ @@ -115,4 +131,5 @@ return '\ \
logine-mail
Affichage des identifiants\ + \ +
\
' -} \ No newline at end of file +} +