Advertisement
Guest User

Untitled

a guest
May 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #TinyMCE hotkeys
  2.  
  3. Add 'format' to initalization:
  4. ````
  5. formats: {text_center: {selector: 'p,h1,h2,h3,h4,h5,table', classes: 'text-center'}}
  6. ````
  7.  
  8. Then add the shortcut in 'setup':
  9. ````
  10. setup: function (ed) {
  11. ed.addShortcut('ctrl+alt+c', 'text_center', function(){
  12. ed.formatter.apply('text_center');
  13. });
  14. }
  15. ````
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement