X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageMinichat.js;h=461c924d4d64ef67f7fc621a7527b829bd4b5133;hp=19fadb06a11ac084e7faa2288f2265fd07c10fc3;hb=65a4c4e621c5cfc52f20097db8ede10714a7c0f6;hpb=f7bccb5ddcaca2c0beb71be02a41fb8e70fc09b5 diff --git a/js/pageMinichat.js b/js/pageMinichat.js index 19fadb0..461c924 100755 --- a/js/pageMinichat.js +++ b/js/pageMinichat.js @@ -60,24 +60,27 @@ PageMinichat.prototype.charger = function() // les outils de bannissement (uniquement pour les ekMaster) if (this.client.ekMaster) { - $("body").append( + $( '
' + '

' + 'Ban de 3 jours' + 'Ban de 15min' + 'Avertissement' + '
' - ) - $("#outilsBan").hover( + ).hover( function(){}, function() { $("#outilsBan").hide() } - ) + ).appendTo("body") + + this.util.infoBulle("Slap", $("#outilsBan #slap")) + this.util.infoBulle("Kick", $("#outilsBan #kick")) + this.util.infoBulle("Ban", $("#outilsBan #ban")) } - this.util.infoBulle("Ouvrir la conversation liée au troll de la semaine", $("#trollCourant")) + this.util.infoBulle("Ouvrir la conversation liée au troll de la semaine", $("#trollCourant .troll")) // $("body").append("
") @@ -538,7 +541,7 @@ Conversation.prototype.flush = function(funClickOuvrirConv) (this.messages[i].ekMaster ? " ekMaster" : "") + "\">" + "
" + - "[" + message.date + "]" + + "[" + message.date + "]" + "" + message.auteurId + "" + identifiant + "" + XHTMLrepondA + "" + this.formateur.traitementComplet(message.contenu, message.pseudo) + "" + @@ -567,6 +570,11 @@ Conversation.prototype.flush = function(funClickOuvrirConv) } ) + if (thisConversation.client.viewTimes) + $(".dateComplete", this).show() + else + $(".dateComplete", this).hide() + $("a[@rel*=lightbox]", this).lightBox() // les outils de bannissement (uniquement pour les ekMaster) @@ -579,7 +587,7 @@ Conversation.prototype.flush = function(funClickOuvrirConv) var h = element.height() var offset = element.offset() var outils = $("#outilsBan").css("top", offset.top - 2).css("left", offset.left - 2).height(h < 16 ? 16 : h).width(element.width() + 16 * 3 + 4 + 64).show() - $("img", outils).unbind() + $("img", outils).unbind("click") $("#slap", outils).click( function(e) { @@ -943,7 +951,7 @@ Messages.prototype.rafraichirMessages = function(vider) { case "new_troll" : thisMessages.trollIdCourant = data["troll_id"] - $("#trollCourant .troll").html(thisMessages.formateur.traitementComplet(data["content"])).unbind().click( + $("#trollCourant .troll").html(thisMessages.formateur.traitementComplet(data["content"])).unbind("click").click( function() { thisMessages.ouvrirConversation(data["message_id"])