JSFiddle - React, Tailwind, and code Playground
by mehmetatas
HTML
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="http://tinymce.cachefly.net/4.0/tinymce.min.js"></script>
<div class="modal hide fade" role="dialog" aria-hidden="true">
<textarea class="editor"></textarea>
</div>
JavaScript
$(function () {
$('.modal').on('shown', function () {
tinymce.init({
selector: ".editor",
theme: "modern",
menubar: false,
statusbar: false,
plugins: ["link table autoresize"],
toolbar: "undo redo | bold italic underline strikethrough removeformat | blockquote superscript subscript | bullist numlist table | link unlink ",
height: 250
});
});
$('.modal').modal('show');
});