|
@@ -46,12 +46,26 @@ class InlineEditor extends InlineEditorBase {}
|
|
|
|
|
|
|
|
function SpecialCharactersEmoji( editor ) {
|
|
function SpecialCharactersEmoji( editor ) {
|
|
|
editor.plugins.get( 'SpecialCharacters' ).addItems( 'Emoji', [
|
|
editor.plugins.get( 'SpecialCharacters' ).addItems( 'Emoji', [
|
|
|
- { title: 'smile', character: '😀' },
|
|
|
|
|
- { title: 'wink', character: '😉' },
|
|
|
|
|
{ title: 'cool', character: '😎' },
|
|
{ title: 'cool', character: '😎' },
|
|
|
{ title: 'surprise', character: '😮' },
|
|
{ title: 'surprise', character: '😮' },
|
|
|
{ title: 'confusion', character: '😕' },
|
|
{ title: 'confusion', character: '😕' },
|
|
|
- { title: 'crying', character: '😢' }
|
|
|
|
|
|
|
+ { title: 'crying', character: '😢' },
|
|
|
|
|
+ { character: '🙂', title: 'Slightly smiling face' },
|
|
|
|
|
+ { character: '😀', title: 'Smiling face' },
|
|
|
|
|
+ { character: '😃', title: 'Smiling face with big eyes' },
|
|
|
|
|
+ { character: '😄', title: 'Smiling face with smiling eyes' },
|
|
|
|
|
+ { character: '😁', title: 'Beaming face with smiling eyes' },
|
|
|
|
|
+ { character: '😅', title: 'Smiling face with tears' },
|
|
|
|
|
+ { character: '😆', title: 'Grinning face' },
|
|
|
|
|
+ { character: '🤣', title: 'Rolling on the floor laughing' },
|
|
|
|
|
+ { character: '😂', title: 'Lauging with tears' },
|
|
|
|
|
+ { character: '🙃', title: 'Upside down face' },
|
|
|
|
|
+ { character: '😉', title: 'Winking face' },
|
|
|
|
|
+ { character: '😊', title: 'Smiling face with smiling eyes' },
|
|
|
|
|
+ { character: '😇', title: 'Smiling face with halo' },
|
|
|
|
|
+ { character: '🤓', title: 'Nerdy face' },
|
|
|
|
|
+ { character: '🧐', title: 'Face with monocle' },
|
|
|
|
|
+ { character: '🥳', title: 'Partying face' },
|
|
|
] );
|
|
] );
|
|
|
}
|
|
}
|
|
|
|
|
|