Merge pull request #4298 from ritzalam/move-record-alert-windows

- reposition record alert windows
This commit is contained in:
Richard Alam 2017-08-22 18:01:15 -04:00 committed by GitHub
commit dc51f97a2f
2 changed files with 5 additions and 3 deletions

View File

@ -286,7 +286,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
var logoutWindow:LogoutWindow;
logoutWindow = LogoutWindow(PopUpManager.createPopUp(FlexGlobals.topLevelApplication as DisplayObject, LogoutWindow, true));
var newX:Number = btnLogout.x + btnLogout.width - logoutWindow.width;
var newX:Number = this.width - logoutWindow.width;
var newY:Number = btnLogout.y + btnLogout.height + 5;
PopUpManager.centerPopUp(logoutWindow);

View File

@ -91,7 +91,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
// Confirm logout using built-in alert
_confirmationAlert = Alert.show(message, ResourceUtil.getInstance().getString('bbb.mainToolbar.recordBtn.confirm.title'), Alert.YES | Alert.NO, this, onCloseConfirmationDialog, null, Alert.YES);
var newX:Number = this.x;
// Reach out to MainAppShell to set position of alert window.
var newX:Number = this.parent.parent.width * 0.7;
var newY:Number = this.y + this.height + 5;
_confirmationAlert.validateNow();
@ -181,7 +182,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
alert.setStyle("modalTransparencyDuration", 250);
alert.titleIcon = getStyle('iconRecordReminder');
var newX:Number = this.x;
// Reach out to MainAppShell to set position of alert window.
var newX:Number = this.parent.parent.width * 0.65;
var newY:Number = this.y + this.height + 5;
alert.validateNow();