LoginSignup
1
0

More than 3 years have passed since last update.

【Rails】Rails5.2 リッチテキストエディタsummernote-railsのツールバーアイコンの表示・非表示を切り替える

Posted at

gem 'summernote-rails'
https://github.com/summernote/summernote-rails

summernote-init.coffee
$(document).on 'turbolinks:load', ->
  $('[data-provider="summernote"]').each ->
    $(this).summernote
      lang: 'ja-JP'
      height: 300
      toolbar: [
                ['insert', ['picture', 'link']],
                ["table", ["table"]],
                ["style", ["style"]],
                ["fontsize", ["fontsize"]],
                ["color", ["color"]],
                ["style", ["bold", "italic", "underline", "clear"]],
                ["para", ["ul", "ol", "paragraph"]],
                ["height", ["height"]],
                ["help", ["help"]]
             ]

4bddbabf5f7dd3fbd8dff2fb73afe709.png

jsのオプションに、toolbar:[]部分の記述を足して、表示したくないアイコンに対応したハッシュの値を消せばアイコンが消える。

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0