Adds javadoc

This commit is contained in:
yanas 2016-09-16 00:17:27 -05:00
parent 1853fa6fae
commit a1635ccc68
1 changed files with 8 additions and 2 deletions

View File

@ -1211,8 +1211,14 @@ UI.onStartMutedChanged = function (startAudioMuted, startVideoMuted) {
SettingsMenu.updateStartMutedBox(startAudioMuted, startVideoMuted); SettingsMenu.updateStartMutedBox(startAudioMuted, startVideoMuted);
}; };
UI.onRaiseHandChanged = function (isRaiseHand) { /**
eventEmitter.emit(UIEvents.RAISE_HAND_CHANGED, isRaiseHand); * Notifies interested listeners that the raise hand property has changed.
*
* @param {boolean} isRaisedHand indicates the current state of the
* "raised hand"
*/
UI.onRaiseHandChanged = function (isRaisedHand) {
eventEmitter.emit(UIEvents.RAISE_HAND_CHANGED, isRaisedHand);
}; };
/** /**