X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageMinichat%2Fconversation.js;h=d8cd8a7ac94098b0a090302955af4115cf67af78;hp=c3082b88b200f29f7acee01ed1184238110ddcf1;hb=4f15129b495827b1894f8a234cc8f32262233fb1;hpb=5b696161ae91e007fc2e9bd455a14f4363772131 diff --git a/js/pageMinichat/conversation.js b/js/pageMinichat/conversation.js index c3082b8..d8cd8a7 100644 --- a/js/pageMinichat/conversation.js +++ b/js/pageMinichat/conversation.js @@ -16,7 +16,8 @@ // You should have received a copy of the GNU General Public License // along with Euphorik. If not, see . - + /*jslint laxbreak:true */ + /** * Représente une conversation. * Une conversation, au niveau XHTML, est formé de deux partie, le titre et les messages. @@ -285,7 +286,7 @@ euphorik.Conversation.prototype.attacherEventsSurMessage = function(element) { function(event) { // FIXME : ya pas mieux ? var racine = $(event.target).text(); - thisConversation.conversations.ouvrirConversation(parseInt(idString.substring(1, racine.length - 1), 36)); + thisConversation.conversations.ouvrirConversation(parseInt(racine.substring(1, racine.length - 1), 36)); return false; } );