X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageMinichat%2Fconversation.js;h=73b8d3a7011c4392f16df5e9a60ea67791777cd8;hp=70be515e80ce2f90f44ca4e449357fe1c0c78466;hb=7cf389481b133c57d6563b5e6747131f4abbf589;hpb=dd3320de291341d6d86f79421b85d12c4764b057 diff --git a/js/pageMinichat/conversation.js b/js/pageMinichat/conversation.js index 70be515..73b8d3a 100644 --- a/js/pageMinichat/conversation.js +++ b/js/pageMinichat/conversation.js @@ -56,7 +56,7 @@ euphorik.Conversation = function(conversations, num) { '
' + (reverse ? messageRacineXHTML : "") + '
+ (this.num === 0 ? '' : '
') + //
'<1>' + '
' + (reverse ? "" : messageRacineXHTML) + @@ -70,13 +70,13 @@ euphorik.Conversation = function(conversations, num) { // les infos bulles this.util.infoBulle("Aller à la première page", $("#" + this.getId() + " .titre .numPage"), euphorik.Util.positionBulleType.haut); if (this.num !== 0) { - this.util.infoBulle("Créer un lien vers la conversation", $("#" + this.getId() + " .titre .lien")); + this.util.infoBulle("Créer un lien vers la conversation", $("#" + this.getId() + " .titre .creerLien")); this.util.infoBulle("Fermer la conversation", $("#" + this.getId() + " .titre .fermer")); } // les différents événements liés à la conversation var thisConversation = this; - $("#" + this.getId() + " .titre .lien").click(function() { + $("#" + this.getId() + " .titre .creerLien").click(function() { thisConversation.util.replaceSelection( $("form#posterMessage input.message")[0], "{" + thisConversation.client.conversations[thisConversation.num - 1].root.toString(36) + "}" @@ -286,6 +286,7 @@ euphorik.Conversation.prototype.flush = function() { /** * Attache des événements à un message donné. + * Utilisé lorsqu'un message est ajouté au document HTML. * @element le message du DOM */ euphorik.Conversation.prototype.attacherEventsSurMessage = function(element) { @@ -326,8 +327,15 @@ euphorik.Conversation.prototype.attacherEventsSurMessage = function(element) { $("form input.message").focus(); }).hover(function() { // affiche les outils liées au message var top = $(this).offset().top - var left = $(this).offset().left + $(this).width() - thisConversation.util.outilsMessage.largeur - thisConversation.util.outilsMessage.css("top", top + 1).css("left", left).prependTo(this).show(); + var left = $(this).offset().left + $(this).outerWidth() - thisConversation.util.outilsMessage.largeur + $(".extraire", thisConversation.util.outilsMessage).unbind(); + $(".extraireCompletement", thisConversation.util.outilsMessage).unbind(); + // TODO : ces deux appels devraient se trouver dans "PageMinichat" lors de la création de thisConversation.util + // malheureusement lors de la modification du DOM (suppression des conversations) les événements liés sont supprimés + thisConversation.util.infoBulle("Extraction de la conversation à partir de ce message", $(".extraire", thisConversation.util.outilsMessage)); + thisConversation.util.infoBulle("Extraction de la conversation complète", $(".extraireCompletement", thisConversation.util.outilsMessage)); + thisConversation.util.outilsMessage.css("top", top).css("left", left).prependTo(this).show(); + thisConversation.util.outilsMessage.largeur = thisConversation.util.outilsMessage.outerWidth(); }, function() { thisConversation.util.outilsMessage.hide() });