Skip to content

Commit

Permalink
Revert "igniterealtime#37: Exposing UI config options that are availa…
Browse files Browse the repository at this point in the history
…ble in the latest version of Meet."

This reverts commit 96697f3.
  • Loading branch information
jeremydrake-eAc committed Feb 15, 2018
1 parent 0861ad9 commit 96c5c1e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public List<String> getButtonsImplemented()
{
// These should match the implementations that are provided in the defaultToolbarButtons.js file in jitsi-meet.
// The order of this list is used as the default ordering of the buttons.
return JiveGlobals.getListProperty( "ofmeet.buttons.implemented", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "fodeviceselection", "hangup", "profile", "contacts", "info", "chat", "recording", "etherpad", "sharedvideo", "sip", "dialpad", "settings", "raisehand", "videoquality", "filmstrip" ) );
return JiveGlobals.getListProperty( "ofmeet.buttons.implemented", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "hangup", "profile", "contacts", "chat", "recording", "etherpad", "sharedvideo", "sip", "dialpad", "settings", "raisehand" ) );
}

public void resetButtonsImplemented()
Expand All @@ -205,7 +205,7 @@ public void setButtonsEnabled( List<String> buttons )

public List<String> getButtonsEnabled()
{
return JiveGlobals.getListProperty( "ofmeet.buttons.enabled", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "fodeviceselection", "hangup", "profile", "contacts", "info", "chat", "recording", "etherpad", "sharedvideo", "sip", "dialpad", "settings", "raisehand", "videoquality", "filmstrip" ) );
return JiveGlobals.getListProperty( "ofmeet.buttons.enabled", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "hangup", "profile", "contacts", "chat", "recording", "etherpad", "sharedvideo", "sip", "dialpad", "settings", "raisehand" ) );
}

public void resetButtonsEnabled()
Expand All @@ -220,7 +220,7 @@ public void setButtonsOnTop( List<String> buttons )

public List<String> getButtonsOnTop()
{
return JiveGlobals.getListProperty( "ofmeet.buttons.onTop", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "fodeviceselection", "hangup" ) );
return JiveGlobals.getListProperty( "ofmeet.buttons.onTop", Arrays.asList( "microphone", "camera", "desktop", "invite", "fullscreen", "hangup" ) );
}

public void resetButtonsOnTop()
Expand Down

0 comments on commit 96c5c1e

Please sign in to comment.