Matthieu Estrada
Matthieu Estrada
Thanks. I've install your plugin but it doesn'work very good... or I don't understand how it works...? Redmine 3.0.3
I think that's because I've parameters... I'll make another tests tomorrow
@dergachev happy to know plugin still in development. This warning appears only during plugin migration. Otherwise, no errors or problems when using the plugin.
FYI, I use the following to clear my blocks, especially for blocks like pre, h1, etc ...: ```js { name: 'clear', title: 'Clear format', icon: '', result: () => document.execCommand('formatBlock',...
@jaredreich I make a PR for this and improve it a little for nested blocks
Maybe only review image handler: ```js result: () => { const url = window.prompt('Enter the image URL') if (url) document.execCommand('insertHTML', false, ''); } ``` But it weighs down the function...
@fuyunliu due to a problem with PRE in Firefox who put one PRE block by line, I've make this little function for code button: ```js { name: 'code', icon: '',...
Not so easy to make this kind of things, but you can get the selection value before calling callback of pell. Here is a working example: **1/** Add a dedicated...
It depends on what you want to do next, I stayed on something very simple because the goal of this editor is to be as light as possible.
Hi @OKNoah and @Findus23 do you have an example to add dimensions? Because I tried, but I don't see anything on matomo. ```js matomo.track({url: 'http://example.com/track/this/url', 'dimension1': "test"}) ``` Thanks in...