Added back Summernote editor. Removed emoji picker.

Thanks to ryanMushy and xet7 !

Related 84fde1ecfc (commitcomment-48956373)
This commit is contained in:
Lauri Ojansivu 2021-04-01 00:30:46 +03:00
parent b9a4ae654e
commit 47ecc654b8
4 changed files with 4 additions and 8 deletions

View file

@ -144,4 +144,4 @@ rajit:bootstrap3-datepicker-zh-cn
rajit:bootstrap3-datepicker-zh-tw
staringatlights:fast-render
spacebars
georgemccann:meteor-emoji-picker
easylogic:summernote

View file

@ -56,6 +56,7 @@ ddp-server@2.3.2
deps@1.0.12
diff-sequence@1.1.1
dynamic-import@0.6.0
easylogic:summernote@0.8.8
ecmascript@0.15.0
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.11.0
@ -67,7 +68,6 @@ fastclick@1.0.13
fetch@0.1.1
fortawesome:fontawesome@4.7.0
geojson-utils@1.0.10
georgemccann:meteor-emoji-picker@0.1.74
horka:swipebox@1.0.2
hot-code-push@1.0.4
html-tools@1.0.11
@ -226,6 +226,7 @@ templating-runtime@1.3.2
templating-tools@1.1.2
tmeasday:check-npm-versions@0.3.2
tracker@1.2.0
twbs:bootstrap@3.3.6
ui@1.0.13
underscore@1.0.10
url@1.3.1

View file

@ -4,7 +4,6 @@ template(name="editor")
class="{{class}}"
id=id
autofocus=autofocus
data-meteor-emoji="true"
placeholder="{{_ 'comment-placeholder'}}")
+Template.contentBlock

View file

@ -1,5 +1,4 @@
Template.editor.onRendered(() => {
new MeteorEmoji();
const textareaSelector = 'textarea';
const mentions = [
// User mentions
@ -100,9 +99,7 @@ Template.editor.onRendered(() => {
if (inputs.length === 0) {
// only enable richereditor to new comment or edit comment no others
enableTextarea();
}
/*
else {
} else {
const placeholder = inputs.attr('placeholder') || '';
const mSummernotes = [];
const getSummernote = function(input) {
@ -261,7 +258,6 @@ Template.editor.onRendered(() => {
});
});
}
*/
} else {
enableTextarea();
}