Tui.editor: is collecting user data ?

Created on 18 Mar 2018  Â·  3Comments  Â·  Source: nhn/tui.editor

a post request is sent when i init this plugin. https://www.google-analytics.com/collect.
tui-editor/dist/tui-editor-Editor-all.js

Most helpful comment

You can set {usageStatistics: false} when editor init

All 3 comments

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'
      ],
   })
Was this page helpful?
0 / 5 - 0 ratings

Related issues

oguera picture oguera  Â·  3Comments

Gilles-GitHub picture Gilles-GitHub  Â·  4Comments

kelvinkoko picture kelvinkoko  Â·  3Comments

tirli picture tirli  Â·  5Comments

mygyugyu picture mygyugyu  Â·  3Comments