Mark Hicken

Results 14 comments of Mark Hicken

It would be awesome to add in support for HDMI-CEC if a USB-CEC adapter is present. The [Pulse Eight USB-CEC Adapter](https://www.pulse-eight.com/p/104/usb-hdmi-cec-adapter) could facilitate this. It can be controlled using [libcec](https://github.com/Pulse-Eight/libcec)....

It's working for me on macOS Monterey (12.5.1) with the Pulse Eight USB-CEC device.

Using `fetch` instead of `axios`... ```javascript // styleID should be in the form "mapbox/satellite-v9" async function switchBaseMap(map, styleID) { const response = await fetch( `https://api.mapbox.com/styles/v1/${styleID}?access_token=${mapboxgl.accessToken}` ); const responseJson = await...

I had the same issue in IE9 (local install). v9.0.8112.16421. Adding the highlighted line from above fixed it for me. Strangely, I then removed that line, cleared cache and closed/reopened...

After rebooting it still works. I'm was wondering if maybe it was a charset issue or something (I've seen this before). So I tried copying the original file and it...

Awesome! Thx for the reply!

So, was this actually completed? Just curious because I don't see a related PR.

Awesome! A few of us are anxiously awaiting that update!

componentWillReceiveProps(nextProps) { // compare this.props to nextProps }

I just ran across this... https://facebook.github.io/react/docs/animation.html#low-level-api-reacttransitiongroup I don't have time to mess with it for now but it seems like it would allow us to fix the unmount issue.