Browse Source

Autocompletion fix

CrazyPhD 4 years ago
parent
commit
c0af87d858
2 changed files with 4 additions and 1 deletions
  1. 0 0
      dist/cdtexteditor.min.js
  2. 4 1
      src/cdtexteditor/cdtexteditor.js

File diff suppressed because it is too large
+ 0 - 0
dist/cdtexteditor.min.js


+ 4 - 1
src/cdtexteditor/cdtexteditor.js

@@ -3,6 +3,8 @@ let CDTE_DICTIONARIES = [];
 let CDTE_PREDICTIVE_PHRASES = [];
 let CDTE_EDITORS = [];
 
+let CDTE_test = false;
+
 class CDTextEditor {
     /**
      * Create an CDTextEditor entity.
@@ -594,7 +596,6 @@ class CDTextEditor {
             word = word.toLowerCase().trim();
             let wordlen = word.length;
             let variants = [];
-            
             if ('"'+word+'"' in dict) {
                 variants = dict['"'+word+'"'];
                 let options = {
@@ -610,6 +611,8 @@ class CDTextEditor {
                     completeSingle: false
                 };
                 this.editor.showHint(options);
+            } else {
+                this.editor.showHint(null);
             }
         }.bind(this));
     }

Some files were not shown because too many files changed in this diff