Chris Blakley

Results 185 comments of Chris Blakley

Here is some documentation about IndexedDB: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB https://caniuse.com/#feat=indexeddb IE11 and Edge have partial support, but I don't think that prevents us from using it as needed. Probably some advanced features...

Here is the code from the documentation together: ```js //START INDEXEDDB TESTING console.log('here we go with indexeddb...', 8); window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; if ( !window.indexedDB...

Good article here: https://wanago.io/2018/10/08/fundamentals-of-storing-data-in-the-browser-with-indexeddb/

This is a pretty major breaking change... Need to wait for just the right time to implement it if we do. ![Screen Shot 2021-02-13 at 1 55 38 PM](https://user-images.githubusercontent.com/6349678/107858657-3189be00-6e03-11eb-8347-2eb12c84e2da.png)

Add the upcoming offcanvas nav section to this list too. #2136

From the documentation on HTML5 Constraint API: ```js function checkZIP() { // For each country, defines the pattern that the ZIP has to follow var constraints = { ch :...

Maybe its fine to ignore "acceptance" style checkboxes.

I may table this issue in favor of upcoming KV Storage: https://github.com/chrisblakley/Nebula/issues/1832

Not necessarily– just low priority as far as use cases go. They'll need their own event listeners and can't use the same "filler" as-is since it currently just works for...

This could be a separate issue than SW. I've added `admin-ajax` to the network list, but I still get a `Permission Denied` response, so I'm thinking it might be a...