You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
329 B

tinymce.init({
selector: "textarea#custom-shortcut",
content_css: '//www.tiny.cloud/css/codepen.min.css',
height: 300,
setup: function (editor) {
editor.addShortcut(
'meta+alt+y', 'Add yellow highlight to selected text.', function () {
editor.execCommand('hilitecolor', false , '#FFFF00');
});
}
});