Antoine
Antoine
Hi, I think I have a similar issue as described by @piebe. In `karma.conf.js` config object, I register the Angular 2 dev bundle that registers many modules: ``` js files:...
I also reproduce with `editor.blocks.renderFromHTML('');` without the "readonly" switch, see this codepen: https://codepen.io/antoine_ol/pen/BaGKaKE Open the browser console and click anywhere in the page. You will see errors. Add any content...
Similar use case here: call an API + close a popover containing the slider (closing while the user is dragging hurts the UX). I described it here: https://github.com/react-component/slider/issues/938
Brilliant! For a better dragging experience, I added `pointer-events: none;` to the arrow (to avoid disabling the drag detection when hovering over the arrow) and replaced borders with outlines to...
For the default dashed line, that's what the second parameter is for: ```js new DragDrop(editor, 'none'); ``` (see my edit above) Then we're free to style however we want. ---...
After playing a bit with it, here are the changes that give me an okay experience: ```js // keep the default border style, no second argument, otherwise the last selector...
Weird, I have it at the correct position at the first and last position too. Same as you (for the first and last only). When trying my rules above, did...