mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-13 16:37:52 +00:00
fix of post splitting
This commit is contained in:
parent
4c1645858b
commit
ae2af33506
@ -764,15 +764,15 @@ function replyTextInput(e) {
|
||||
var $tas = tweetForm.find("textarea");
|
||||
splitedPostsCount = $tas.length;
|
||||
var icurrentta = $tas.index(this); // current textarea $tas index
|
||||
if (splitedPostsCount > 1)
|
||||
var pml = getPostSplitingPML();
|
||||
else
|
||||
var pml = 140;
|
||||
var cci = getPostSpittingCI(icurrentta);
|
||||
var caretPos = $this.caret();
|
||||
var reply_to = $this.attr('data-reply-to');
|
||||
|
||||
for (var i = 0; i < $tas.length; i++) {
|
||||
if (splitedPostsCount > 1)
|
||||
var pml = getPostSplitingPML();
|
||||
else
|
||||
var pml = 140;
|
||||
if ($tas[i].value.length > pml) {
|
||||
if (pml === 140)
|
||||
pml = getPostSplitingPML();
|
||||
@ -802,6 +802,7 @@ function replyTextInput(e) {
|
||||
|
||||
$tas = tweetForm.find("textarea");
|
||||
splitedPostsCount = $tas.length;
|
||||
pml = getPostSplitingPML();
|
||||
|
||||
$oldta.on('focus', function() {
|
||||
this.style.height = '80px';
|
||||
@ -832,6 +833,10 @@ function replyTextInput(e) {
|
||||
}
|
||||
$tas = tweetForm.find("textarea");
|
||||
splitedPostsCount = $tas.length;
|
||||
if (splitedPostsCount > 1)
|
||||
pml = getPostSplitingPML();
|
||||
else
|
||||
pml = 140;
|
||||
caretPos = -1;
|
||||
if (icurrentta >= i && icurrentta > 0) {
|
||||
icurrentta -= 1;
|
||||
|
Loading…
Reference in New Issue
Block a user