Skip to content

Commit

Permalink
Made the whole User object Bindable
Browse files Browse the repository at this point in the history
  • Loading branch information
capilkey committed May 27, 2015
1 parent 1b7b407 commit 9ac0f24
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package org.bigbluebutton.lib.user.models {
import org.bigbluebutton.lib.chat.models.ChatMessages;
import org.osflash.signals.ISignal;

[Bindable]
public class User {
public static const MODERATOR:String = "MODERATOR";

Expand Down Expand Up @@ -91,7 +92,6 @@ package org.bigbluebutton.lib.user.models {

private var _hasStream:Boolean = false;

[Bindable]
public function get hasStream():Boolean {
return _hasStream;
}
Expand All @@ -113,7 +113,6 @@ package org.bigbluebutton.lib.user.models {

private var _voiceJoined:Boolean;

[Bindable]
public function get voiceJoined():Boolean {
return _voiceJoined;
}
Expand All @@ -125,7 +124,6 @@ package org.bigbluebutton.lib.user.models {

private var _muted:Boolean;

[Bindable]
public function get muted():Boolean {
return _muted;
}
Expand All @@ -137,7 +135,6 @@ package org.bigbluebutton.lib.user.models {

private var _talking:Boolean;

[Bindable]
public function get talking():Boolean {
return _talking;
}
Expand All @@ -149,7 +146,6 @@ package org.bigbluebutton.lib.user.models {

private var _locked:Boolean;

[Bindable]
public function get locked():Boolean {
return _locked;
verifyUserStatus();
Expand Down

0 comments on commit 9ac0f24

Please sign in to comment.