Remove the Context Menu in TinyMCE

前端 未结 4 767
猫巷女王i
猫巷女王i 2020-12-20 13:26

TinyMCE has a built-in contextmenu which activates when you right-click in the content editor area. I need to remove this menu due to the copy/cut/paste in the menu. It fo

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-20 13:58

    In version 5, context menu is built in the core. This has helped me:

    tinymce.init({
        ...
        contextmenu: false,
        ...
    });
    

提交回复
热议问题