We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7debcd1 commit 0807a98Copy full SHA for 0807a98
1 file changed
T66y tool/T66y tool.user.js
@@ -179,12 +179,18 @@
179
url: form.attr('action'),
180
data: form.serialize(),
181
success: function () {
182
- quickReply.val("回复成功");
183
submitBtn.val("提 交");
184
- setCountdown();
+ quickReply.val("回复成功");
+ setTimeout(() => {
185
+ setCountdown();
186
+ }, 2000);
187
},
188
fail: function () {
189
190
+ quickReply.val("回复失败");
191
192
+ quickReply.val(quickReplyStr);
193
194
quickReply.removeAttr("disabled");
195
}
196
});
0 commit comments