Michael Harris
Michael Harris
I made an alternative project that works under a relative url. Check it out [here](https://github.com/mlh758/resque-web-ish)
I think the issue here is that the `id` used in the parameter appears to actually be the index into the failed queue. If the failure list is changing while...
It seems the error isn't directly from the library but a complaint from Redis itself. [Stack Overflow](https://stackoverflow.com/questions/38042629/redis-cross-slot-error). It seems like the requested keys (worker ids) requested in the command aren't...
What version of jquery and what version of [jqueryUI](https://jqueryui.com/) are you using?
That seems like a reasonable change, feel free to open a PR.
It's probably good to trigger the blur if validate is looking for it. However, I think it might not be good to trigger the select blur from the button blur...
Interestingly, if you press and hold space it starts to select and if you hold it long enough it will start toggling on and off.
Looks like we're using `e.which` which is actually deprecated now according to [mdn](https://developer.mozilla.org/en-US/docs/Web/Events/keydown) so we should switch to `e.key`. Don't know if that will help with this issue though.
It seems like forcing everything open would make sense. Otherwise there wouldn't be a sensible way to display the results.
Seems like you would need to implement some custom logic around the [click](https://github.com/ehynds/jquery-ui-multiselect-widget/wiki/Events) event.