Configuration property enableRaiseHand renamed to enableEmojiStatus.
This commit is contained in:
parent
e464edf890
commit
c4d240950f
@ -35,7 +35,7 @@
|
||||
<module name="UsersModule" url="http://HOST/client/UsersModule.swf?v=VERSION"
|
||||
uri="rtmp://HOST/bigbluebutton"
|
||||
allowKickUser="true"
|
||||
enableRaiseHand="true"
|
||||
enableEmojiStatus="true"
|
||||
enableSettingsButton="true"
|
||||
baseTabIndex="301"
|
||||
/>
|
||||
|
@ -35,7 +35,7 @@ package org.bigbluebutton.modules.users.model
|
||||
public var allowKickUser:Boolean = true;
|
||||
|
||||
[Bindable]
|
||||
public var enableRaiseHand:Boolean = true;
|
||||
public var enableEmojiStatus:Boolean = true;
|
||||
|
||||
[Bindable]
|
||||
public var enableSettingsButton:Boolean = true;
|
||||
@ -54,8 +54,8 @@ package org.bigbluebutton.modules.users.model
|
||||
if (vxml.@allowKickUser != undefined) {
|
||||
allowKickUser = (vxml.@allowKickUser.toString().toUpperCase() == "TRUE") ? true : false;
|
||||
}
|
||||
if (vxml.@enableRaiseHand != undefined) {
|
||||
enableRaiseHand = (vxml.@enableRaiseHand.toString().toUpperCase() == "TRUE") ? true : false;
|
||||
if (vxml.@enableEmojiStatus != undefined) {
|
||||
enableEmojiStatus = (vxml.@enableEmojiStatus.toString().toUpperCase() == "TRUE") ? true : false;
|
||||
}
|
||||
if (vxml.@enableSettingsButton != undefined) {
|
||||
enableSettingsButton = (vxml.@enableSettingsButton.toString().toUpperCase() == "TRUE") ? true : false;
|
||||
|
@ -176,7 +176,7 @@
|
||||
}
|
||||
|
||||
private function changeButtons(presenter:Boolean):void {
|
||||
raiseHandBtn.visible = raiseHandBtn.includeInLayout = partOptions.enableRaiseHand;
|
||||
raiseHandBtn.visible = raiseHandBtn.includeInLayout = partOptions.enableEmojiStatus;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user