Restrict keyboard shortcuts in TinyMCE editor

后端 未结 5 682
慢半拍i
慢半拍i 2021-02-08 16:38

Trying to find where to disable individual keyboard shortcuts in the jQuery version of TinyMCE editor. Currently the list of allowable shortcuts is:

  • ctrl+z
5条回答
  •  生来不讨喜
    2021-02-08 16:49

    For TinyMCE v4: List of keyboard shortcuts available within the editor body

    tinyMCE.init({       
        setup: function(editor) {
            editor.on("init", function(){
                editor.shortcuts.remove('meta+u', '', ''); // "meta" maps to Command on Mac and Ctrl on PC          
            });
        }
    })
    

提交回复
热议问题