X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=851849587a593f9f64ce7ea99540cc1f177bcec7;hp=7e611db931aff3b9785581f5b830bebd15c79605;hb=e2fc8a1a3dd118b714a2ea55daf1829fa1b98649;hpb=30d42cfc83fbf3ebf24dec3e750257b3f174f290 diff --git a/js/euphorik.js b/js/euphorik.js index 7e611db..8518495 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -602,7 +602,8 @@ Client.prototype.resetDonneesPersonnelles = function() // les conversations, une conversation est un objet possédant les attributs suivants : // - root (entier) // - page (entier) - this.conversations = new Array() + // - reduit (bool) + this.conversations = [] } Client.prototype.setCss = function(css) @@ -665,7 +666,7 @@ Client.prototype.ajouterConversation = function(racine) if (this.conversations[i].root == racine) return false - this.conversations.push({root : racine, page : 1}) + this.conversations.push({root : racine, page : 1, reduit : false}) if (this.autoflush) this.flush(true) return true