- add tooltips for lock/unlock icon and mute/unmute icon

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@4089 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
Richard Alam 2010-04-02 14:11:59 +00:00
parent 30522dd4ff
commit 53b9defbb4

View File

@ -101,12 +101,14 @@
<mx:State name="dispMuteCheckBox">
<mx:AddChild relativeTo="{talkImg}" position="before">
<mx:Button id="muteCB" width="18" height="16" visible="true" enabled="{data.moderator}"
toolTip="{ResourceUtil.getInstance().getString('bbb.listenerItem.lockImg.toolTip')}"
icon="{data.locked ? lockedIcon : unlockedIcon}" click="lockMuteUser()"/>
</mx:AddChild>
</mx:State>
</mx:states>
<mx:Button id="muteBtn" width="18" height="16" visible="true" enabled="{data.moderator}"
toolTip="{ResourceUtil.getInstance().getString('bbb.listenerItem.muteUnmute.toolTip')}"
icon="{data.muted ? muteIcon : unmuteIcon}" click="muteUser()"/>
<mx:Label id="nameLabel" textAlign="left" text="{data.callerName}" width="145"
toolTip="{ResourceUtil.getInstance().getString('bbb.listenerItem.nameLbl.toolTip')}"/>