I've implemented quill-emoji along with ngx-quill within an angular 7 app. Everything appears to work except the completions. I can see the UL tag, however there are no li tags when I try to trigger the completion ';s".
my html looks like this :
<quill-editor [(ngModel)]="postcontent" [modules]="{ toolbar: { container: [ 'emoji' ], handlers: { emoji: emptyHandler } }, 'emoji-toolbar': true, 'emoji-textarea': true, 'emoji-shortname': true }" (onEditorCreated)="addBindingCreated($event)">
the only thing different compared to the ngx-quill example is that I'm importing quill-emoji as :
import 'quill-emoji/dist/quill-emoji.js';
instead of
import 'quill-emoji"
when I try to import it as just quill-emoji it doesn't complie as it is having problem with teh css (background image). is there anything I can do to get this to work ?
I've implemented quill-emoji along with ngx-quill within an angular 7 app. Everything appears to work except the completions. I can see the UL tag, however there are no li tags when I try to trigger the completion ';s".
my html looks like this : <quill-editor [(ngModel)]="postcontent" [modules]="{ toolbar: { container: [ 'emoji' ], handlers: { emoji: emptyHandler } }, 'emoji-toolbar': true, 'emoji-textarea': true, 'emoji-shortname': true }" (onEditorCreated)="addBindingCreated($event)">
the only thing different compared to the ngx-quill example is that I'm importing quill-emoji as : import 'quill-emoji/dist/quill-emoji.js';
instead of
import 'quill-emoji"
when I try to import it as just quill-emoji it doesn't complie as it is having problem with teh css (background image). is there anything I can do to get this to work ?