The changeset displayed on the versions page are now better line wrapped

This commit is contained in:
echarp 2016-09-11 18:17:25 +02:00
parent c2ad8dfb4d
commit 06e3595988
29 changed files with 75434 additions and 3 deletions

View File

@ -0,0 +1,2 @@
body.versions td.changes
white-space: pre-wrap

View File

@ -40,8 +40,7 @@
%td= t ".#{version.event}_html"
%td= User.find version.whodunnit if version.whodunnit
%td= object
%td
%pre= changes
%td.changes= changes
%td= l version.created_at, format: :short
%td
- unless version.event == 'destroy'

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,21 @@
(function() {
$(document).on('turbolinks:load', function() {
return tinyMCE.init({
schema: 'html5',
menubar: false,
language: 'fr_FR',
selector: 'textarea.description',
content_css: '/assets/application-e6e283210493f0778814ff94f81119b6707172ab190886917cadf4ba1f287f43.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('turbolinks:before-cache', function() {
return tinymce.remove();
});
}).call(this);