2016-05-21 23:15:49 +02:00
|
|
|
(function() {
|
|
|
|
$(document).ready(function() {
|
|
|
|
return tinyMCE.init({
|
|
|
|
schema: 'html5',
|
|
|
|
menubar: false,
|
|
|
|
language: 'fr_FR',
|
|
|
|
selector: 'textarea.description',
|
2016-05-21 23:44:53 +02:00
|
|
|
content_css: '/assets/application-ee82c1c962333e87dcfc9a0eb1abbc739ed57ba7b77732ece49ab08b6cedf706.css',
|
2016-05-21 23:15:49 +02:00
|
|
|
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', function() {
|
|
|
|
return tinymce.remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
}).call(this);
|