TinyMCEの最小限の実装を作成しようとしています。必要なボタンは、太字、斜体、フォントサイズ、フォントの色、リンク、元に戻す/やり直しだけです。
私は彼らのフィドルデモから例をトリミングし、不要なボタンの多くを削除することができました。
これは私がinitを減らしたものですが、他に何を排除できるかわかりません。見つけられなかった別の設定はありますか?これでも、リストボタン、上付き文字/下付き文字を取得し、書式を削除して特殊文字を挿入します...
tinyMCE.init({
// General options
mode: "textareas",
theme: "advanced",
plugins: "", //note, i've removed every plugin for demnstration, stll have unwanted buttons
// Theme options
theme_advanced_buttons1: "|,bold,italic,|,fontsizeselect,|,forecolor,",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing: true,
theme_advanced_text_colors : "FF00FF,FFFF00,000000",
width: "100%",
height: "400"
});