X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageMinichat%2Fconversation.js;fp=js%2FpageMinichat%2Fconversation.js;h=635f50a4dcf70bc859b2732766658eb42362102c;hp=60b22a62d855a1078055d07940cf8d7e21809885;hb=09608ab29e1c39ea51b51a5f8669dcde36efb306;hpb=15b54271a21f0af63f7e540a0be7f9c91aaabb01 diff --git a/js/pageMinichat/conversation.js b/js/pageMinichat/conversation.js index 60b22a6..635f50a 100644 --- a/js/pageMinichat/conversation.js +++ b/js/pageMinichat/conversation.js @@ -35,7 +35,7 @@ euphorik.Conversation = function(conversations, num) { this.id = Math.floor(Math.random() * 1000000).toString(36); this.util = this.conversations.util; - this.formateur = this.conversations.formateur; + this.formater = this.conversations.formater; this.client = this.conversations.client; this.idDernierMessageAffiche = 0; @@ -107,7 +107,7 @@ euphorik.Conversation.prototype.getMessageReduit = function() { * @racine un message représentant la racine de la conversation, vaut undefined pour la conversation générale */ euphorik.Conversation.prototype.setRacine = function(racineElement) { - this.racine = new euphorik.Message(this.client, this.formateur, racineElement); + this.racine = new euphorik.Message(this.client, this.formater, racineElement); }; /**