Configuration property enableRaiseHand renamed to enableEmojiStatus.

This commit is contained in:
Ghazi Triki 2015-08-23 16:35:10 +01:00
parent e464edf890
commit c4d240950f
3 changed files with 5 additions and 5 deletions

View File

@ -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"
/>

View File

@ -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;

View File

@ -176,7 +176,7 @@
}
private function changeButtons(presenter:Boolean):void {
raiseHandBtn.visible = raiseHandBtn.includeInLayout = partOptions.enableRaiseHand;
raiseHandBtn.visible = raiseHandBtn.includeInLayout = partOptions.enableEmojiStatus;
}
/*