X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageProfile.js;h=41e9fd5d6f03b6b233d9166bc018db927d2cb916;hp=7f3a64b954c3f55cff5ad2fc44a12fb6287a89bc;hb=27c4a5ac9000ca933f28abfedbf9607f73619615;hpb=09608ab29e1c39ea51b51a5f8669dcde36efb306 diff --git a/js/pageProfile.js b/js/pageProfile.js index 7f3a64b..41e9fd5 100755 --- a/js/pageProfile.js +++ b/js/pageProfile.js @@ -20,7 +20,7 @@ euphorik.PageProfile = function(client, formater, util) { this.nom = "profile"; this.client = client; - this.formateur = formater; + this.formater = formater; this.util = util; }; @@ -78,17 +78,17 @@ euphorik.PageProfile.prototype.chargerProfile = function() { var passwordRe = $("form#profile input.passwordRe").val(); if (password !== "" || passwordRe !== "") { if (password !== passwordRe) { - thisPage.util.messageDialogue("Les mots de passes ne correspondent pas"); + thisPage.util.messageDialog("Les mots de passes ne correspondent pas"); return; } thisPage.client.password = thisPage.util.md5(password); } if(!thisPage.client.flush()) { - thisPage.util.messageDialogue("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur); + thisPage.util.messageDialog("Impossible de mettre à jour votre profile, causes inconnues", euphorik.Util.messageType.erreur); } else { - thisPage.util.messageDialogue("Votre profile a été mis à jour"); - thisPage.pages.afficherPage("minichat"); + thisPage.util.messageDialog("Votre profile a été mis à jour"); + thisPage.pages.displayPage("minichat"); } } ); @@ -101,7 +101,7 @@ euphorik.PageProfile.prototype.chargerLogin = function() { function() { if(thisPage.client.connexionLogin($("form#profile input.login").val(), thisPage.util.md5($("form#profile input.password").val()))) { // TODO afficher un message "ok" - thisPage.pages.afficherPage("minichat"); + thisPage.pages.displayPage("minichat"); } } );