Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tinymce.init({
- selector: '#message-text',
- plugins: 'link codesample',
- toolbar: 'bold italic strikethrough | link | codesample',
- menubar: false,
- target_list: false,
- link_title: false,
- branding: false,
- elementpath: false,
- setup: function (editor) {
- editor.on('keyup', function () {
- $(editor.targetElm).val(editor.getContent());
- });
- editor.on('blur', function () {
- $(editor.targetElm).blur();
- });
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement