diff options
author | redmatrix <git@macgirvin.com> | 2016-04-20 17:43:20 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-20 17:43:20 -0700 |
commit | 635580091a227529cb491e6441a5acbfff3177be (patch) | |
tree | fc105e2ae8d950ecfa9985ecfea9f86068029e57 /view/js | |
parent | a768bb1ab22ae0d7277778501487a67d4bcf093b (diff) | |
parent | 59799ba2b4c8aa9958e2333a6ed2f17b08df82bf (diff) | |
download | volse-hubzilla-635580091a227529cb491e6441a5acbfff3177be.tar.gz volse-hubzilla-635580091a227529cb491e6441a5acbfff3177be.tar.bz2 volse-hubzilla-635580091a227529cb491e6441a5acbfff3177be.zip |
Merge branch 'master' into dev
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/autocomplete.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 59e3600b3..84cc075dc 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -147,6 +147,9 @@ function listNewLineAutocomplete(id) { setCaretPosition(text, caretPos + 5); return true; } + else { + return false; + } } function string2bb(element) { @@ -315,11 +318,12 @@ function string2bb(element) { a.on('textComplete:select', function(e, value, strategy) { value; }); a.keypress(function(e){ - e.stopImmediatePropagation(); if (e.keyCode == 13) { var x = listNewLineAutocomplete(this.id); - if(x) + if(x) { + e.stopImmediatePropagation(); e.preventDefault(); + } } }); }; |