Skip to content

Commit

Permalink
temporary pdomOrder for Energy screen, #213
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Mar 18, 2024
1 parent c659730 commit a89094f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions js/energy/view/EnergyScreenView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,31 @@ export default class EnergyScreenView extends IdealGasLawScreenView {
this.viewProperties = viewProperties;
this.speedAccordionBox = speedAccordionBox;
this.kineticEnergyAccordionBox = kineticEnergyAccordionBox;

// Play Area focus order, see https://github.com/phetsims/gas-properties/issues/213.
this.pdomPlayAreaNode.pdomOrder = [
//TODO https://github.com/phetsims/gas-properties/issues/213
];

// Control Area focus order, see https://github.com/phetsims/gas-properties/issues/213.
this.pdomControlAreaNode.pdomOrder = [
//TODO https://github.com/phetsims/gas-properties/issues/213
leftPanels,
this.returnLidButton,
this.containerNode,
this.thermometerNode,
this.pressureGaugeNode,
this.timeControlNode,
this.heaterCoolerNode,
this.eraseParticlesButton,
this.heavyBicyclePumpNode,
this.lightBicyclePumpNode,
this.particleTypeRadioButtonGroup,
toolsPanel,
particlesAccordionBox,
injectionTemperatureAccordionBox,
this.resetAllButton
];
}

protected override reset(): void {
Expand Down

0 comments on commit a89094f

Please sign in to comment.