1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-09 00:20:08 +00:00

Adding .you for the own user

This commit is contained in:
Tim Düsterhus 2012-08-10 18:32:08 +02:00
parent e8618f2c13
commit 1108d32ed3

View File

@ -364,10 +364,12 @@ window.console ?=
li.attr 'id', id li.attr 'id', id
li.addClass 'timsChatUser' li.addClass 'timsChatUser'
li.addClass 'jsTooltip' li.addClass 'jsTooltip'
li.addClass 'you' if user.userID is WCF.User.userID
if user.awayStatus? if user.awayStatus?
li.addClass 'timsChatAway' li.addClass 'timsChatAway'
li.attr 'title', user.awayStatus li.attr 'title', user.awayStatus
li.data 'username', user.username li.data 'username', user.username
a = $ '<a href="javascript:;">' + WCF.String.escapeHTML(user.username) + '</a>' a = $ '<a href="javascript:;">' + WCF.String.escapeHTML(user.username) + '</a>'
a.addClass 'userLink' a.addClass 'userLink'
a.data 'userID', user.userID a.data 'userID', user.userID
@ -377,6 +379,7 @@ window.console ?=
@toggleUserMenu $ event.target @toggleUserMenu $ event.target
, @ , @
li.append a li.append a
menu = $ '<ul></ul>' menu = $ '<ul></ul>'
menu.addClass 'timsChatUserMenu' menu.addClass 'timsChatUserMenu'
menu.append $ '<li><a href="javascript:;">' + WCF.Language.get('wcf.chat.query') + '</a></li>' menu.append $ '<li><a href="javascript:;">' + WCF.Language.get('wcf.chat.query') + '</a></li>'
@ -385,6 +388,7 @@ window.console ?=
menu.append $ '<li><a href="index.php/User/' + user.userID + '-' + encodeURI(user.username) + '/">' + WCF.Language.get('wcf.chat.profile') + '</a></li>' menu.append $ '<li><a href="index.php/User/' + user.userID + '-' + encodeURI(user.username) + '/">' + WCF.Language.get('wcf.chat.profile') + '</a></li>'
@events.userMenu.fire user, menu @events.userMenu.fire user, menu
li.append menu li.append menu
li.appendTo $ '#timsChatUserList' li.appendTo $ '#timsChatUserList'
foundUsers[id] = true foundUsers[id] = true