Ckeditor не отображается после установки - PullRequest
0 голосов
/ 07 февраля 2019

После установки CKedit не работает.Я использовал направляющие - https://github.com/galetahub/ckeditor

Я перепробовал все, но это не работает

config / initializers / assets.rb

`Rails.application.config.assets.precompile += %w(ckeditor/config.js)`

config / initializers / assets.rb

//= require ckeditor/init

rout.rb

mount Ckeditor::Engine => '/ckeditor'

ActiveRecord + carrierwave

gem 'carrierwave'
gem 'mini_magick'

rails generate ckeditor:install --orm=active_record --backend=carrierwave

все пробовали, но все равно не работает, помогите

1 Ответ

0 голосов
/ 07 февраля 2019

Вот простой код, попробуйте это. Не нужно никаких драгоценных камней

<head>
  <meta charset="utf-8">
  <meta name="robots" content="noindex, nofollow">
  <title>Full page editing with Document Properties plugin</title>
  <script src="https://cdn.ckeditor.com/4.11.2/standard-all/ckeditor.js"></script>
</head>

<body>
    <div class="container">
  <textarea cols="80" id="editor1" name="editor1" rows="10">
            </textarea>
  </div>
  <script>
    CKEDITOR.replace('editor1', {
      fullPage: true,
      extraPlugins: 'docprops',
      // Disable content filtering because if you use full page mode, you probably
      // want to  freely enter any HTML content in source mode without any limitations.
      allowedContent: true,
      height: 320
    });
  </script>
</body>
</html>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...