DefinitelyTyped/tinymce/tinymce-tests.ts
Martin D ff2d63b83b TinyMCE typings (WIP) (#13728)
* TinyMCE typings

* TinyMCE declaration file

* Update tsconfig.json

Changed `strictNullChecks` to true and added `noImplicitThis`

* Update index.d.ts

Added namespace

* Update index.d.ts
2017-01-05 09:26:08 -08:00

12 lines
407 B
TypeScript

tinymce.init(
{
selector: '.tinymce-editable',
height: 145,
plugins: [
'autolink table contextmenu paste code link textcolor colorpicker image imagetools'
],
menubar: 'edit insert table tools',
toolbar: 'undo redo | styleselect bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist | link image',
content_css: 'page.css'
}
);