BetterDiscordApp-rauenzi/injector/src/modules
Qb e99686346c
ReactDevTools: fixed race condition (#898)
```js
console.log('READY STATE '+ electron.app.isReady());
electron.app.once("loaded", async ()=>{console.log("loaded");});
electron.app.whenReady().then(async ()=>{console.log("whenReady");});
```
Results in the following when the app is already ready.
```
READY STATE true
whenReady
[... loaded will be logged]
```
This will not fix the race condition when opening the devtools. You want to open the devtools as **early** as possible for the tabs to show up.
2021-07-26 11:19:16 -04:00
..
betterdiscord.js ReactDevTools: fixed race condition (#898) 2021-07-26 11:19:16 -04:00
browserwindow.js Add a few small features 2021-04-02 23:16:23 -04:00
csp.js Add a few small features 2021-04-02 23:16:23 -04:00
ipc.js Add FileBrowser API to BdApi (#842) 2021-07-08 18:20:28 -04:00
reactdevtools.js Add support for other chrome profiles in reactdevtools.js (#802) 2021-07-07 18:46:06 -04:00