forked from GNUsocial/gnu-social
Inline replies: drop the box if tabbing out and no text
This commit is contained in:
parent
c0dcd73379
commit
e6c972ebcb
15
js/util.js
15
js/util.js
@ -616,6 +616,15 @@ var SN = { // StatusNet
|
|||||||
replyForm.find('input[type="submit"]').val(SN.msg('reply_submit'));
|
replyForm.find('input[type="submit"]').val(SN.msg('reply_submit'));
|
||||||
list.append(replyItem);
|
list.append(replyItem);
|
||||||
|
|
||||||
|
replyForm.find('textarea').blur(function() {
|
||||||
|
var textarea = $(this);
|
||||||
|
var txt = $.trim(textarea.val());
|
||||||
|
if (txt == '' || txt == textarea.data('initialText')) {
|
||||||
|
// Nothing to say? Begone!
|
||||||
|
replyItem.remove();
|
||||||
|
SN.U.NoticeInlineReplyPlaceholder(parentNotice);
|
||||||
|
}
|
||||||
|
});
|
||||||
replyForm.submit(function(event) {
|
replyForm.submit(function(event) {
|
||||||
var form = replyForm;
|
var form = replyForm;
|
||||||
$.ajax({
|
$.ajax({
|
||||||
@ -660,10 +669,12 @@ var SN = { // StatusNet
|
|||||||
if (text.length == 0) {
|
if (text.length == 0) {
|
||||||
throw "No textarea";
|
throw "No textarea";
|
||||||
}
|
}
|
||||||
|
var replyto = '';
|
||||||
if (initialText) {
|
if (initialText) {
|
||||||
var replyto = initialText + ' ';
|
replyto = initialText + ' ';
|
||||||
text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
|
|
||||||
}
|
}
|
||||||
|
text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
|
||||||
|
text.data('initialText', $.trim(initialText + ''));
|
||||||
text.focus();
|
text.focus();
|
||||||
if (text[0].setSelectionRange) {
|
if (text[0].setSelectionRange) {
|
||||||
var len = text.val().length;
|
var len = text.val().length;
|
||||||
|
2
js/util.min.js
vendored
2
js/util.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user