Removed references to tabIndex for now; they will be put back in the branch for importing tab order. Other small adjustments.
This commit is contained in:
parent
6314e84b53
commit
2499b26e68
@ -91,6 +91,9 @@
|
|||||||
private var answersAC:ArrayCollection = new ArrayCollection();
|
private var answersAC:ArrayCollection = new ArrayCollection();
|
||||||
|
|
||||||
private function init():void{
|
private function init():void{
|
||||||
|
|
||||||
|
answerCollection = trackingPoll.generateStats();
|
||||||
|
|
||||||
conference = UserManager.getInstance().getConference();
|
conference = UserManager.getInstance().getConference();
|
||||||
webPollText.visible = (UsersUtil.amIPresenter() && (!reviewing && trackingPoll.publishToWeb));
|
webPollText.visible = (UsersUtil.amIPresenter() && (!reviewing && trackingPoll.publishToWeb));
|
||||||
btnClosePoll.visible = UsersUtil.amIPresenter();
|
btnClosePoll.visible = UsersUtil.amIPresenter();
|
||||||
@ -102,9 +105,6 @@
|
|||||||
generate.poll = trackingPoll;
|
generate.poll = trackingPoll;
|
||||||
dispatchEvent(generate);
|
dispatchEvent(generate);
|
||||||
}
|
}
|
||||||
refreshTimer.addEventListener(TimerEvent.TIMER, autoRefresh);
|
|
||||||
refreshTimer.start();
|
|
||||||
answersAC = trackingPoll.generateStats();
|
|
||||||
notified = false;
|
notified = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,9 +285,9 @@
|
|||||||
editable="false"
|
editable="false"
|
||||||
text=""
|
text=""
|
||||||
height="25"
|
height="25"
|
||||||
width="95%"
|
width="95%"
|
||||||
tabIndex="{baseIndex+4}"
|
/>
|
||||||
/>
|
<!-- tabIndex="{baseIndex+4}" -->
|
||||||
</mx:HBox>
|
</mx:HBox>
|
||||||
<mx:Text width="200"
|
<mx:Text width="200"
|
||||||
paddingTop="15" paddingBottom="10"
|
paddingTop="15" paddingBottom="10"
|
||||||
@ -298,7 +298,8 @@
|
|||||||
rowCount="{answerCollection.length}"
|
rowCount="{answerCollection.length}"
|
||||||
width="90%"
|
width="90%"
|
||||||
accessibilityName="{ResourceUtil.getInstance().getString('bbb.polling.stats.question', [trackingPoll.question])}"
|
accessibilityName="{ResourceUtil.getInstance().getString('bbb.polling.stats.question', [trackingPoll.question])}"
|
||||||
tabIndex="{baseIndex+5}">
|
>
|
||||||
|
<!-- tabIndex="{baseIndex+5}" -->
|
||||||
<mx:columns>
|
<mx:columns>
|
||||||
<mx:DataGridColumn id="answerColumn"
|
<mx:DataGridColumn id="answerColumn"
|
||||||
dataField="answer"
|
dataField="answer"
|
||||||
|
Loading…
Reference in New Issue
Block a user