Skip to content

Commit

Permalink
moved the confirmation box down a little
Browse files Browse the repository at this point in the history
  • Loading branch information
capilkey committed Aug 19, 2013
1 parent d935d8e commit 2d68393
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
var alert:Alert = Alert.show(ResourceUtil.getInstance().getString('bbb.logout.confirm.message'), ResourceUtil.getInstance().getString('bbb.logout.confirm.title'), Alert.YES | Alert.NO, this, alertLogout, null, Alert.YES);
var newX:Number = langSelector.x + langSelector.width/2;
var newY:Number = btnLogout.y + btnLogout.height;
var newY:Number = btnLogout.y + btnLogout.height + 5;
alert.validateNow();
alert.move(newX, newY);
Expand Down Expand Up @@ -313,13 +313,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
]]>
</mx:Script>

<mx:Style>
Alert{
fontSize: 20;
}

</mx:Style>

<mx:HBox id="quickLinks" width="1" includeInLayout="false">
<mx:LinkButton id="usersLinkBtn" click="onQuickLinkClicked('users')" label="{ResourceUtil.getInstance().getString('bbb.users.quickLink.label')}"
accessibilityDescription="{usersLinkBtn.label}" toolTip="{usersLinkBtn.label}"
Expand Down

0 comments on commit 2d68393

Please sign in to comment.