Skip to content

Commit

Permalink
Update T66y tool.user.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hoothin committed Oct 16, 2023
1 parent e05bd1b commit 9f1071f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion T66y tool/T66y tool.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
(function() {
'use strict';

const defaultReply = "1024 感謝分享";
var helper = {
addCss: function(css) {
var style = document.createElement('style');
Expand Down Expand Up @@ -220,7 +221,7 @@
quickReply.on('contextmenu', function(e) {
e.stopPropagation();
e.preventDefault();
customReplyStr = prompt("输入自定义回复内容", replyStr || "1024");
customReplyStr = prompt("输入自定义回复内容", replyStr || defaultReply);
if (customReplyStr) {
replyStr = customReplyStr;
quickReply.attr('title', replyStr + "(右击修改)");
Expand Down

0 comments on commit 9f1071f

Please sign in to comment.