Procházet zdrojové kódy

Bug fix - choosing shortcut with ENTER deletes the space preceding the @

Vijayakrishnan před 2 roky
rodič
revize
6cbbac186f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      js-dev/shortcut.js

+ 1 - 1
js-dev/shortcut.js

@@ -91,7 +91,7 @@
                     document.execCommand("delete", true, null);
                 }
             }
-            if(_clearReturn) document.execCommand("delete", true, null);
+            // if(_clearReturn) document.execCommand("delete", true, null);
             document.execCommand("insertText", true, options[index].value);
             discard();
         }