parent
23d7343de9
commit
1795ab7e4d
@ -0,0 +1,27 @@
|
||||
$(document).ready ->
|
||||
# Setup the graphical editor for event's description
|
||||
tinyMCE.init
|
||||
schema: 'html5',
|
||||
menubar: false,
|
||||
language: 'fr_FR',
|
||||
selector: 'textarea#event_description',
|
||||
content_css: '<%= asset_path 'application.css' %>',
|
||||
entity_encoding : 'raw',
|
||||
add_unload_trigger: true,
|
||||
browser_spellcheck: true,
|
||||
toolbar: [
|
||||
' bold italic strikethrough
|
||||
| bullist numlist outdent indent
|
||||
| alignleft aligncenter alignright alignjustify
|
||||
| link image media insertdatetime charmap table
|
||||
| undo redo
|
||||
| searchreplace
|
||||
| code visualblocks preview fullscreen'
|
||||
],
|
||||
plugins: 'lists, advlist, autolink, link, image, charmap, paste, print,
|
||||
preview, table, fullscreen, searchreplace, media, insertdatetime,
|
||||
visualblocks, visualchars, wordcount, contextmenu, code'
|
||||
|
||||
$(document).on 'page:receive', ->
|
||||
# Delete existing tinymce editors, very important in the turbolinks context!
|
||||
tinymce.remove()
|
Loading…
Reference in new issue