mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-12 10:06:45 +08:00
17 lines
562 B
TypeScript
17 lines
562 B
TypeScript
import { tinymce } from 'tinymce';
|
|
|
|
tinymce.init({
|
|
selector: 'textarea',
|
|
height: 500,
|
|
menubar: false,
|
|
plugins: [
|
|
'advlist autolink lists link image charmap print preview anchor',
|
|
'searchreplace visualblocks code fullscreen',
|
|
'insertdatetime media table contextmenu paste code'
|
|
],
|
|
toolbar: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
|
|
content_css: '//www.tinymce.com/css/codepen.min.css'
|
|
});
|
|
|
|
const t = new tinymce.util.Color('#FFFFFF');
|