Remove the Context Menu in TinyMCE

前端 未结 4 771
猫巷女王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 14:21

    The easy solution is to remove the contextmenu plugin in your tinymce init:

     plugins : "inlinepopups,insertdatetime,fullscreen,contextmenu",
    

    becomes

     plugins : "inlinepopups,insertdatetime,fullscreen",
    

提交回复
热议问题