Karl

Results 56 comments of Karl
trafficstars

Yeah, I'll see if I can include this in the next release 👍

Have you tried the [`ignore`](https://mobius1.github.io/Selectable/api/options/ignore.html) option to see if that helps?

It's working for me in FF 52.0, 62.0.3 and 63.0.3, but the unpkg MDN has been timing-out for the past day or so. It may be that. Any errors in...

Just out of curiosity, are you using a hybrid laptop that allows both mouse and touch controls? I coded selectablejs to remove the `mousedown` event listener on these type of...

I'm gonna reopen this issue just in case anyone else comes here with the same problem. I'll modify the code to include better support for hybrid devices.

The period in the package name might be causing the error. I need to investigate more.

Use: [getSelectedNodes()](https://mobius1.github.io/Selectable/api/methods/getSelectedNodes.html) ```js const selectedElements = instance.getSelectedNodes(); const ids = selectedElements.map(el => el.id); ```

You can iterate over the items and check their properties: ```js item.selected // Is item selected item.selecting // Is item flagged for selection item.deselecting // Is item flagged for de-selection...

Possible fix with the [`ignore`](https://github.com/Mobius1/Selectable/wiki/ignore) option.

@johanneswilm - The ES2015+ module route was something I was considering. Maybe it's time to put it in to action as the library seems to be fairly popular. I'll look...