aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-06 17:08:48 -0800
committerMario <mario@mariovavti.com>2017-11-11 20:24:26 +0100
commit47fab9721042d1adc5db3e1c5fe166a29cb41c0f (patch)
treeee3b384280c00e08540805dfd1a040988095de70 /view
parent5dec3ff18e1659a1c04d0ad902e6dc1cb0a7dd04 (diff)
downloadvolse-hubzilla-47fab9721042d1adc5db3e1c5fe166a29cb41c0f.tar.gz
volse-hubzilla-47fab9721042d1adc5db3e1c5fe166a29cb41c0f.tar.bz2
volse-hubzilla-47fab9721042d1adc5db3e1c5fe166a29cb41c0f.zip
bring back tabindex to submit comments
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 882f50e8a..c3873d823 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -32,7 +32,12 @@ function handle_comment_form(e) {
var fields_empty = true;
if(form.find('.comment-edit-text').length) {
- form.find('.comment-edit-text').addClass('expanded').removeAttr('placeholder');
+ var commentElm = form.find('.comment-edit-text').attr('id');
+ var submitElm = commentElm.replace(/text/,'submit');
+
+ $('#' + commentElm).addClass('expanded').removeAttr('placeholder');
+ $('#' + commentElm).attr('tabindex','9');
+ $('#' + submitElm).attr('tabindex','10');
form.find(':not(:visible)').show();
}
@@ -43,7 +48,12 @@ function handle_comment_form(e) {
fields_empty = false;
});
if(fields_empty) {
- form.find('.comment-edit-text').removeClass('expanded').attr('placeholder', aStr.comment);
+ var emptyCommentElm = form.find('.comment-edit-text').attr('id');
+ var emptySubmitElm = commentElm.replace(/text/,'submit');
+
+ $('#' + emptyCommentElm).removeClass('expanded').attr('placeholder', aStr.comment);
+ $('#' + emptyCommentElm).removeAttr('tabindex');
+ $('#' + emptySubmitElm).removeAttr('tabindex');
form.find(':not(.comment-edit-text)').hide();
}
});