Skip to content
Snippets Groups Projects
Commit 10c90694 authored by Ghazi Triki's avatar Ghazi Triki
Browse files

Display remaining time in the breakout room if 30 minutes or below.

parent 82f99acc
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
}
}
private function handleRemainingTimeUpdate(e:MeetingTimeRemainingEvent):void {
if (!timeRemaining.visible) {
// Display timer only if there is less than 30 minutes remaining
if (!timeRemaining.visible && e.timeLeftInSec <= 1800) {
timeRemaining.visible = true;
}
TimerUtil.setCountDownTimer(timeRemaining, e.timeLeftInSec);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment