a post request is sent when i init this plugin. https://www.google-analytics.com/collect.
tui-editor/dist/tui-editor-Editor-all.js
Yes, I see the same thing. I have CSP and this is blocked (I don't have tracking on my website).
But I wonder why this plugin is tracking.
You can set {usageStatistics: false} when editor init
I was curious the same problem, usageStatistics: false work for me.
here is code snippet for the lazy (lol)
var editor = new Editor({
el: document.querySelector("#topic_content"),
initialEditType: "wysiwyg",
hideModeSwitch: true,
usageStatistics: false, // No Google Analytics
toolbarItems: [
'heading',
'bold',
'italic',
'strike',
'divider',
'hr',
'quote',
'divider',
'ul',
'ol',
// 'task',
// 'indent',
// 'outdent',
// 'divider',
// 'table',
'image',
'link',
// 'divider',
// 'code',
// 'codeblock'
],
})
Most helpful comment
You can set {usageStatistics: false} when editor init