mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
3e757e2d76
Improves spacing Improves button layout on forums
15 lines
529 B
Text
15 lines
529 B
Text
<script type="text/javascript">
|
|
$(function() {
|
|
$('textarea').tinymce({
|
|
mode: "textareas",
|
|
theme: "advanced",
|
|
plugins: "inlinepopups,contextmenu,nonbreaking,template",
|
|
theme_advanced_buttons1: "bold,italic,blockquote,|,bullist,numlist,|,formatselect,|,link,unlink,image,|,cleanup,code",
|
|
theme_advanced_buttons2: "",
|
|
theme_advanced_buttons3: "",
|
|
theme_advanced_buttons4: "",
|
|
convert_urls: false,
|
|
content_css: '<%= asset_path "application.css" %>'
|
|
});
|
|
});
|
|
</script>
|