Put back recording window under the recording button.

This commit is contained in:
Ghazi Triki 2018-06-04 16:02:58 +01:00
parent 1668b60069
commit b5a66652ed

View File

@ -853,8 +853,11 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
}
private function handleOpenRecordWindowEvent(e:BBBEvent):void {
var popUp:RecordWindow = PopUpUtil.createModalPopUp(FlexGlobals.topLevelApplication as DisplayObject, RecordWindow, true) as RecordWindow;
var popUp:RecordWindow = PopUpUtil.createModalPopUp(FlexGlobals.topLevelApplication as DisplayObject, RecordWindow, false) as RecordWindow;
popUp.setRecordingFlag(e.payload.recording);
PopUpUtil.lockPosition(popUp, function():Point {
return new Point(parentApplication.width - 150 - popUp.width, y + toolbar.height);
});
}
private function onFooterLinkClicked(e:TextEvent):void{