diff options
author | Sam X. Chen <sam.xi.chen@gmail.com> | 2019-09-17 09:30:26 -0400 |
---|---|---|
committer | Sam X. Chen <sam.xi.chen@gmail.com> | 2019-09-17 09:30:26 -0400 |
commit | f29d7daa1d687df535a7c6ac5c53cc6f067c44cb (patch) | |
tree | 118844e09bbda941eb1d8daa7de87da1933a12e2 /client | |
parent | 0120c73a8026c11c65ca06de381d3f466f01e360 (diff) | |
download | wekan-f29d7daa1d687df535a7c6ac5c53cc6f067c44cb.tar.gz wekan-f29d7daa1d687df535a7c6ac5c53cc6f067c44cb.tar.bz2 wekan-f29d7daa1d687df535a7c6ac5c53cc6f067c44cb.zip |
BugFix: in richer editor @ autocomplete doesn't really insert the user name into comment properly
Diffstat (limited to 'client')
-rwxr-xr-x | client/components/main/editor.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/components/main/editor.js b/client/components/main/editor.js index 2035f62f..b1725227 100755 --- a/client/components/main/editor.js +++ b/client/components/main/editor.js @@ -190,8 +190,6 @@ Template.editor.onRendered(() => { if (!this.value) { const sn = getSummernote(this); sn && sn.summernote('code', ''); - setAutocomplete(jEditor); - //object && object.editingArea.find('.note-placeholder').show(); } }); const jEditor = object && object.editable; |