X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fcommons.js;h=cefb6c02815ee029f7f18607c104a09391efff1e;hb=a87693bd247721f88dd0b1bed23c00a75aa51c6e;hp=3789e9c2009bd31c68684c7f0c99517073ee20a3;hpb=107cf44fdc59cc42896cb5d142a60d0c6cd50798;p=brisk.git diff --git a/web/commons.js b/web/commons.js index 3789e9c..cefb6c0 100644 --- a/web/commons.js +++ b/web/commons.js @@ -430,11 +430,6 @@ function act_roadmap() send_mesg("roadmap"); } -function act_whysupport() -{ - send_mesg("whysupport"); -} - function act_lascio() { send_mesg("lascio"); @@ -1038,17 +1033,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 + "'>" + user[1] + ""; + } + else { name = user[1]; + } return (name); }