3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

summernoteのimage upload機能を非表示にする

Posted at

はじめに

  • summernoteというWYSIWYGエディターが手軽で簡単
  • railsにはsummernote-railsがある
  • image upload機能があるが、それを実装したくない場合の手法についてメモ

image uploadの2つの方法

おそらくsummernoteは下記の2つの方法でimage uploadができる。そのため、それぞれ出来なくする必要がある。

  1. エディター上部の「画像」ボタンクリック後のフォーム
  2. ドラッグアンドドロップ

1. エディター上部の「画像」ボタンクリック後のフォーム

スタイルシートに下記を追記することで非表示にすることが可能。

.note-group-select-from-files {
  display: none;
}

#2. ドラッグアンドドロップ
dropzoneの機能を停止させるプロパティがあるようです。

$('#summernote').summernote({
disableDragAndDrop: true
});

参考にしたサイト

下記を参考にさせていただきました。

Disable image upload in Summernote
summernoteのimage upload機能を止める

3
3
0

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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?