Calvin

Results 11 comments of Calvin

I can confirm that `localStorage.clear()` was a fix for this.

Sure! If I dynamically populate an active autocomplete input, it will start an autosuggest. Since the dynamically populated value is already accurate (not needing autosuggest), I need a way to...

Just noting here that this works great for asynchronously fetching results: ```js autocomplete( { source: async ( query, populateResults ) => { const res = await fetchSource( query ); populateResults(...

@nickcolley @jrochkind Yeah, my example would definitely require a Webpack config of sorts, but Nick's example would be great for a docs example.

I definitely like the idea of building it in, but to be honest I'm not sure it's necessary. Plus, with the plethora of config options out there, just having an...

cc'ing @joesnellpdx since I'm not on this project anymore. Joe, hit me up on Twitter if you need context.

I have not found the solution so far. cc @alessandrokonrad

From my research the `onpageshow` event works as a cache event, but not on first-load (not sure if this is problematic or not). Apple's bfcache of Safari on iOS will...

I was actually thinking of doing this too. Any objections, @bgardner?