Chris Blakley

Results 185 comments of Chris Blakley

This is similar to the Save Data header, so I want to do a little more research on this. Does the `prefers-reduced-data` media query simply pull from the Save Data...

Just waiting for Safari support now... ![Screen Shot 2021-03-14 at 11 25 19 PM](https://user-images.githubusercontent.com/6349678/111099759-94629800-851c-11eb-8c3a-2fbef407495a.png)

This is supported and ready to be implemented now. ![Screen Shot 2022-04-18 at 11 38 23 AM](https://user-images.githubusercontent.com/6349678/163833186-a20ba6b2-174e-4cb8-a5fe-55b07b7bfc4d.png)

Browser support: https://caniuse.com/#feat=mdn-api_cache

It seems like the Cache API is strictly for file requests– so it probably isn't the best way to enhance memoize data storage.

Use this to check if the API is supported: ```js if ('IdleDetector' in window){ } ```

This API request a specific permission to use it (no longer tied to the notification permission), so unless we are going to use it for something else (like a kiosk,...

From Google's article with some of my own comments. I don't see a way for Nebula to detect the state change without knowing the variable name that the child theme...

Could we do this without triggering the permission and then if the permission is granted later would this automatically start working? ```js if ( 'IdleDetector' in window ){ const idleDetector...