Derek Delaney

Results 8 comments of Derek Delaney

This is a great idea. I was looking through the source code and found [here](https://github.com/kamranahmedse/pennywise/blob/master/public/electron.js#L34) that it's almost set up for something like this. For now, a workaround is to...

Hi, I just ran into this issue as well. If you are using `react-router`, set `useContext` to `ture` and it will use the same context that router uses. After that,...

I was looking for something like this too. I wrote a function that would achieve this that is similar to `showDialog`. I call it `showConfettiDialog`. https://gist.github.com/derekedelaney/0bd36b370daceaf56712a22bd097cdc8

`var token = await c.getTokenResponse();` automatically refreshes the token if it's expired when its called. If you want a new one call it again. You can also use `c.createHttpClient()` and...

I'm running into this same issue. Im hoping there is a fix.

I was able to determine that sometimes the `mousemove` event was getting called by the browser even though my mouse didn't move. I think adding a distance or drag tolerance...

I used the css property `user-select: none;`on my `SelectableComponent` items that can be selected. That prevented highlighting for me.