Renée
Renée
Ah, I think it happens when a new playlist page is autoloaded while you scroll. That replaces the playlist items array, which [clears the selection](https://github.com/u-wave/web/blob/504767d7ffcd3d927187d1003a6cb298d532ea93/src/components/MediaList/index.js#L33-L37).
Fixed in #684, thanks!
I just ran into this again and I think it happens primarily with the shift-click range selection, so if you select 1 thing and scroll for a while and shift-select...
we probably need some sort of manifest file to relate the file path on disk to the dynamic bundle too
Do you have a `socketUrl:` option set in the web client options? ```js createWebClient({ socketUrl: 'wss://example.com/' }) ``` By default it should derive the socket URL from the current URL....
Maybe could detect more complex uses and do something similar to cyclical modules, with a lazy wrapper. ```js // xyz.js module.exports = module.parent.exports // app.js exports.app = function () {...
Do you have the [API server](https://github.com/u-wave/core) running as well?
may've actually been https://github.com/browserify/browserify/issues/1068.
I guess the timer at the bottom (when you're in the queue and not playing) is intended to address this case. On plug.dj I found that I mostly used the...
it would be neat to have a module that could statically evaluate complex expressions and return a range of possible values. prepack kinda does this and a lot more, i...