jvivs
jvivs
+1 for @BrainSlugs83's described sequence chords
I'd suggest avoiding an uppercase for `Cache` unless it is actually a class-like thing. It appears that `cached` is a factory method for creating new instances of `Cache`, correct? If...
It seems the thing returned by `cached()` that you actually interact with is a layer of abstraction--sometimes its an in-memory cache and sometimes its a memcache pool running elsewhere. The...
Try out this solution: https://github.com/speedskater/babel-plugin-rewire/issues/109#issuecomment-200867686. I was able to get past the invalid variable access issue by switching from `import *` syntax to explicit imports. Explicit imports seem like a...
This is an old ticket, but this functionality is now available via `pjax:beforeReplace`.
If you're using webpack to bundle, have you tried applying your fix as a shimmed module for `document`?
Fair point, there are multiple kinds of shimming available with webpack. I was thinking of the [ProvidePlugin](https://webpack.github.io/docs/shimming-modules.html#plugin-provideplugin) which enables the replacement of a free variable like `document` with a module....
Yeah, there's definitely a lot in there. I haven't tried applying it to shadow dom use cases though. If you do find it works, I'd love to know!
There's no way to actually use them in the context of the document unless you inspect the source. It's a pretty crummy user experience. Taking the current markup: ``` Operation...