aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-04-20 18:16:15 -0700
committerredmatrix <git@macgirvin.com>2016-04-20 18:16:15 -0700
commit23180ae07895ba9bcdf7d598f3db4f227bd1fb24 (patch)
treeedcc6da51a743e64b98f20701609cf05367be86b /view
parent2641980ac2876bfe66bb24795dbea4d25483616d (diff)
parent635580091a227529cb491e6441a5acbfff3177be (diff)
downloadvolse-hubzilla-23180ae07895ba9bcdf7d598f3db4f227bd1fb24.tar.gz
volse-hubzilla-23180ae07895ba9bcdf7d598f3db4f227bd1fb24.tar.bz2
volse-hubzilla-23180ae07895ba9bcdf7d598f3db4f227bd1fb24.zip
Merge branch 'dev' into dmeta
Diffstat (limited to 'view')
-rw-r--r--view/css/conversation.css4
-rw-r--r--view/js/autocomplete.js8
2 files changed, 9 insertions, 3 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css
index 5cbd5c896..0ecec039f 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -196,8 +196,10 @@ a.wall-item-name-link {
/* comment_item */
-.comment-edit-text-empty, .comment-edit-text-full {
+.comment-edit-text-empty,
+.comment-edit-text-full {
width: 100%;
+ display: inherit;
}
.comment-edit-text-empty {
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();
+ }
}
});
};