Advertisement
Guest User

Untitled

a guest
Dec 21st, 2017
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. tinymce.init({
  2.     selector: '#message-text',
  3.     plugins: 'link codesample',
  4.     toolbar: 'bold italic strikethrough | link | codesample',
  5.     menubar: false,
  6.     target_list: false,
  7.     link_title: false,
  8.     branding: false,
  9.     elementpath: false,
  10.     setup: function (editor) {
  11.         editor.on('keyup', function () {
  12.             $(editor.targetElm).val(editor.getContent());
  13.         });
  14.  
  15.         editor.on('blur', function () {
  16.             $(editor.targetElm).blur();
  17.         });
  18.     }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement