Valeriy
Valeriy
What editor has this feature? Can you provide such a function?
@InfoLibre Oh my friend) I am one of the stylus contributors. Yes, stylus is much richer than less, but it is very poorly supported by linters and IDEs. I even...
@drtanzil Please give more information
You should replace popup.img option https://xdsoft.net/jodit/doc/options/popup/ ```js Jodit.make('#editor', { popup: { img: Jodit.atom(Jodit.defaultOptions.popup.img.filter(btn => btn.name !== 'pencil')) } })
```js var editor = new Jodit('#editor', { buttons: [ iconURL: '/public/icons/image_left.png', list: { first: 'first', second: 'second' }, childTemplate: (editor, key: string, value: string) => { return `${key}`; } exec:...
Hi @basementmedia2 You can use css display for this ```js editor.events .on("focus", function(e){ editor.toolbar.container.style.display = 'block'; }) .on("blur", function(e){ editor.toolbar.container.style.display = 'none'; }); ```
You should use options.width and options.height ```js Jodit.make('#editor', {width: '100%', height: '100%'}) ```
Hi, https://xdsoft.net/jodit/doc/options/disablePlugins/
Just add them through the event mechanism of Jodit itself ```js const config = useMemo(() => ({ events: { keyup: (e) => console.log(e), paste: (e) => console.log(e), } }); ```
Hi, can you show your code