Carousel Tool for Editor.js
npm install @vietlongn/editorjs-carousel
dist from repository
dist/bundle.js file to your page.
tools property of the Editor.js initial config.
javascript
import Carousel from 'Carousel';
// or if you inject ImageTool via standalone script
const Carousel = window.Carousel;
var editor = EditorJS({
...
tools: {
...
image: {
class: Carousel,
config: {
endpoints: {
byUrl: 'http://localhost:8008/fetchUrl', // Your endpoint that provides uploading by Url
}
}
}
}
...
});
``