|
@@ -1211,8 +1211,14 @@ UI.onStartMutedChanged = function (startAudioMuted, startVideoMuted) {
|
1211
|
1211
|
SettingsMenu.updateStartMutedBox(startAudioMuted, startVideoMuted);
|
1212
|
1212
|
};
|
1213
|
1213
|
|
1214
|
|
-UI.onRaiseHandChanged = function (isRaiseHand) {
|
1215
|
|
- eventEmitter.emit(UIEvents.RAISE_HAND_CHANGED, isRaiseHand);
|
|
1214
|
+/**
|
|
1215
|
+ * Notifies interested listeners that the raise hand property has changed.
|
|
1216
|
+ *
|
|
1217
|
+ * @param {boolean} isRaisedHand indicates the current state of the
|
|
1218
|
+ * "raised hand"
|
|
1219
|
+ */
|
|
1220
|
+UI.onRaiseHandChanged = function (isRaisedHand) {
|
|
1221
|
+ eventEmitter.emit(UIEvents.RAISE_HAND_CHANGED, isRaisedHand);
|
1216
|
1222
|
};
|
1217
|
1223
|
|
1218
|
1224
|
/**
|