2016-07-02 16:48:47 +02:00
|
|
|
$(document).on 'turbolinks:load', ->
|
2014-09-26 22:30:54 +02:00
|
|
|
# Setup the graphical editor for event's description
|
|
|
|
tinyMCE.init
|
2019-04-19 21:42:52 +02:00
|
|
|
width: '100%'
|
2017-06-04 12:59:14 +02:00
|
|
|
height: '40em'
|
|
|
|
menubar: false
|
|
|
|
branding: false
|
|
|
|
language: 'fr_FR'
|
|
|
|
selector: 'input.description'
|
|
|
|
content_css: '<%= asset_path 'application.css' %>'
|
|
|
|
entity_encoding: 'raw'
|
|
|
|
add_unload_trigger: true
|
|
|
|
browser_spellcheck: true
|
2019-04-19 21:42:52 +02:00
|
|
|
style_formats_autohide: true
|
2014-09-26 22:30:54 +02:00
|
|
|
toolbar: [
|
2017-05-06 16:11:24 +02:00
|
|
|
' cut copy paste
|
2014-09-26 22:30:54 +02:00
|
|
|
| undo redo
|
2017-05-06 16:11:24 +02:00
|
|
|
| link image media charmap table
|
2019-04-19 21:42:52 +02:00
|
|
|
| code visualblocks searchreplace',
|
|
|
|
' removeformat bold italic strikethrough superscript subscript
|
|
|
|
| bullist numlist outdent indent
|
|
|
|
| alignleft aligncenter alignright alignjustify alignnone'
|
2017-06-04 12:59:14 +02:00
|
|
|
]
|
2019-04-19 22:02:53 +02:00
|
|
|
plugins: 'lists advlist autolink link image charmap paste print
|
|
|
|
preview table fullscreen searchreplace media insertdatetime
|
|
|
|
visualblocks wordcount code'
|
2014-09-26 22:30:54 +02:00
|
|
|
|
2016-07-02 16:48:47 +02:00
|
|
|
$(document).on 'turbolinks:before-cache', ->
|
2014-09-26 22:30:54 +02:00
|
|
|
# Delete existing tinymce editors, very important in the turbolinks context!
|
|
|
|
tinymce.remove()
|