contentco / quill-emoji

Quill module toolbar extension for emoji
275 stars 165 forks source link

Can I have an example of how to position the emoji palette higher? #178

Open death-joke opened 1 year ago

death-joke commented 1 year ago

Here is my quill configuration file :

export const quillConfiguration = {
  toolbar: [
    ["bold", "italic", "underline", "strike"],
    ["code-block"],
    [{ list: "ordered" }, { list: "bullet" }],
    [ 'emoji' ]
  ],
  "emoji-toolbar": true,
  "emoji-textarea": true,
  "emoji-shortname": true,

};

I know I need to set the paletteTop option, but when I do:

export const quillConfiguration = {
  toolbar: [
    ["bold", "italic", "underline", "strike"],
    ["code-block"],
    [{ list: "ordered" }, { list: "bullet" }],
    [ 'emoji' ]
  ],
  "emoji-toolbar": {
    paletteTop: -200,
  },
  "emoji-textarea": true,
  "emoji-shortname": true,

};