Disable close button and enable it instead of hiding it in FileUploadWindow.mxml

This commit is contained in:
Ghazi Triki 2017-08-11 17:49:10 +01:00
parent f2a42bf791
commit 78f15304e7

View File

@ -311,11 +311,11 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
}
private function disableClosing():void {
showCloseButton = false;
this.closeButton.enabled = false;
}
private function enableClosing():void {
showCloseButton = true;
this.closeButton.enabled = true;
}
private function handlePresentationRemoved(e:RemovePresentationEvent):void {