Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 512 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 512 Bytes

TinyMCE editor

Use TinyMCE editor for your meteor app.

$ meteor add salmanhasni:tinymce

Initialization

Caution: Default skin_url must be defined on init. If you want to use a custom skin, you can simply modify it.

tinymce.init({
  selector: 'textarea',
  skin_url: '/packages/teamon_tinymce/skins/lightgray',
});

Using inline theme

tinymce.init({
  selector: 'div.tinymce',
  skin_url: '/packages/teamon_tinymce/skins/lightgray',
  theme: 'inlite',
  inline: true
});