X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=bb2541b0416d79168c1001b524cbb5d98f9c2c94;hb=fdc55b9426c3e1cb31e950e08b4bb0b35015cef3;hp=c42fc7b62d003c6aab6b2a000fb8a7503d3922f6;hpb=8999ffa5e50d2c772b2cf765e24f2e3df76fee44;p=brisk.git diff --git a/web/commons.js b/web/commons.js index c42fc7b..bb2541b 100644 --- a/web/commons.js +++ b/web/commons.js @@ -358,7 +358,12 @@ function chatt_checksend(obj,e) } function act_chatt(value) { - send_mesg("chatt|"+encodeURIComponent(value)); + if (value.substring(0, 6) == "/info ") { + info_show(value.substring(6)); + } + else { + send_mesg("chatt|"+encodeURIComponent(value)); + } /* obj.disabled = true; obj.value = ""; @@ -1033,17 +1038,19 @@ function user_decorator(user, is_real) for (i = 0 ; i < 4 ; i++) { if (flags & (1 << i)) { - cl += sp + "au" + i; + cl += sp + "au" + i + (is_real ? "" : "_off"); sp = " "; } } - if (flags != 0) + if (flags != 0) { name = ""+user[1]+""; - else + (is_real && (flags & 0xfffffe && ((flags & 0x01) == 0)) ? "id_usr" : "") + + "'>" + user[1] + ""; + } + else { name = user[1]; + } return (name); }