Skip to content

Commit 6e0a2c9

Browse files
committed
update readme and reactime-website to include v24 team
2 parents 02e108a + 9dab434 commit 6e0a2c9

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,14 @@ Node v16.16.0, please use script 'npm run devlegacy' | 'npm run buildlegacy'
255255

256256
## <b>Read More</b>
257257

258-
- [Reactime renovation: Updates Coming in Version 23.0!](https://medium.com/@liam.donaher/reactime-renovation-updates-coming-in-version-23-0-37b2ef2a2771)
258+
- [Relaunching Reactime: Updates and a New Accessibility Feature!](https://medium.com/@evaury/relaunching-reactime-updates-and-a-new-accessibility-feature-1f0fd3a5bd8c)
259259

260260
## <b>Authors</b>
261261

262+
- **Amy Yang** - [@ay7991](https://github.com/ay7991)
263+
- **Eva Ury** - [@evaSUry](https://github.com/evaSUry)
264+
- **Oliver Cho** - [@Oliver-Cho](https://github.com/Oliver-Cho)
265+
- **Jesse Guerrero** - [@jguerrero35](https://github.com/jguerrero35)
262266
- **Ben Margolius** - [@benmarg](https://github.com/benmarg)
263267
- **Eric Yun** - [@ericsngyun](https://github.com/ericsngyun)
264268
- **James Nghiem** - [@jemzir](https://github.com/jemzir)

src/app/slices/mainSlice.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@ export const mainSlice = createSlice({
4848
tabs[currentTab].playing = false;
4949

5050
const currSnapshot = tabs[currentTab].snapshots[tabs[currentTab].currLocation.index]; // current snapshot
51-
const currAxSnapshot = tabs[currentTab].axSnapshots[tabs[currentTab].currLocation.index]; // current snapshot
51+
const currAxSnapshot = tabs[currentTab].axSnapshots[tabs[currentTab].currLocation.index]; // current accessibility tree snapshot
5252

53-
tabs[currentTab].hierarchy.stateSnapshot = { ...currSnapshot }; // resets hierarchy to page current snapshot
54-
// not sure why shallow deep copy
55-
tabs[currentTab].hierarchy.axSnapshot = currAxSnapshot; // resets hierarchy to current snapshot
53+
tabs[currentTab].hierarchy.stateSnapshot = { ...currSnapshot }; // resets hierarchy to current snapshot
54+
tabs[currentTab].hierarchy.axSnapshot = { ...currAxSnapshot }; // resets hierarchy to current accessibility tree snapshot
5655
tabs[currentTab].hierarchy.children = []; // resets hierarchy
5756
tabs[currentTab].snapshots = [currSnapshot]; // resets snapshots to current snapshot
5857
tabs[currentTab].axSnapshots = [currAxSnapshot]; // resets snapshots to current snapshot
@@ -61,6 +60,7 @@ export const mainSlice = createSlice({
6160
tabs[currentTab].index = 1;
6261
tabs[currentTab].currParent = 0;
6362
tabs[currentTab].currBranch = 1;
63+
tabs[currentTab].currLocation = tabs[currentTab].hierarchy; // reset currLocation
6464
tabs[currentTab].seriesSavedStatus = false;
6565
},
6666

src/extension/background.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,10 +368,11 @@ chrome.runtime.onConnect.addListener((port) => {
368368
tabsObj[tabId].axSnapshots = [
369369
tabsObj[tabId].axSnapshots[tabsObj[tabId].currLocation.index],
370370
]; // resets axSnapshots to current page state
371-
tabsObj[tabId].hierarchy.axSnapshot = tabsObj[tabId].axSnapshots[0]; // resets hierarchy to ax tree of current page state
371+
tabsObj[tabId].hierarchy.axSnapshot = tabsObj[tabId].axSnapshots[0]; // resets hierarchy to accessibility tree of current page state
372372
tabsObj[tabId].index = 1; //reset index
373373
tabsObj[tabId].currParent = 0; // reset currParent
374374
tabsObj[tabId].currBranch = 1; // reset currBranch
375+
tabsObj[tabId].currLocation = tabsObj[tabId].hierarchy; // reset currLocation
375376

376377
return true; // return true so that port remains open
377378

0 commit comments

Comments
 (0)