Add ckeditor tabletools plugin

This plugin provides more control over tables and solves a JS error thrown
when user clicks on "Cell properties" ckeditor feature.

https://ckeditor.com/cke4/addon/tabletools
This commit is contained in:
Senén Rodero Rodríguez
2020-04-23 18:18:26 +02:00
parent 082fc1a1b6
commit 103726f24a

View File

@@ -8,7 +8,7 @@ Ckeditor.setup do |config|
config.authorize_with :cancan
config.assets_languages = Rails.application.config.i18n.available_locales.map { |l| l.to_s.downcase }
config.assets_plugins = %w[image link magicline pastefromword
table tableselection]
config.assets_plugins = %w[image link magicline pastefromword table tableselection
tabletools]
config.assets.reject! { |asset| asset =~ /\Ackeditor\/samples\// }
end