@charescape/mazer-fork-ost
Version:
Free and Open-source Bootstrap 5 Admin Dashboard Template and Landing Page
22 lines (19 loc) • 564 B
JavaScript
document.addEventListener("DOMContentLoaded", () => {
const themeOptions = document.body.classList.contains("theme-dark")
? {
skin: "oxide-dark",
content_css: "dark",
}
: {
skin: "oxide",
content_css: "default",
}
tinymce.init({ selector: "#default", ...themeOptions })
tinymce.init({
selector: "#dark",
toolbar:
"undo redo styleselect bold italic alignleft aligncenter alignright bullist numlist outdent indent code",
plugins: "code",
...themeOptions,
})
})