Skip to content

Commit 90eb6fc

Browse files
committed
fix vip days
1 parent feb3201 commit 90eb6fc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

abc.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>FB AIO</h1>
2828
<p>
2929
<span> Preset:</span>
3030
<button onclick="preset.buy()">Buy (1 month)</button>
31-
<button onclick="preset.review()">Review (1 week)</button>
31+
<button onclick="preset.review()">Review (5 days)</button>
3232
</p>
3333

3434
<label for="uid">UID</label>: <input id="uid" type="text" /><br />
@@ -171,9 +171,9 @@ <h1>FB AIO</h1>
171171

172172
const preset = {
173173
buy() {
174-
inp_uid.value = '';
174+
// inp_uid.value = '';
175175
const n = prompt('How many months?', '1');
176-
inp_username.value = ' (' + n + ' months)';
176+
// inp_username.value = ' (' + n + ' months)';
177177
// n month later from now
178178
inp_date.value = new Date(
179179
new Date().setMonth(new Date().getMonth() + parseInt(n))
@@ -182,10 +182,10 @@ <h1>FB AIO</h1>
182182
.split('T')[0];
183183
},
184184
review() {
185-
inp_uid.value = '';
185+
// inp_uid.value = '';
186186
inp_username.value = ' (review)';
187-
// 7 days later from now
188-
inp_date.value = new Date(new Date().setDate(new Date().getDate() + 7))
187+
// 5 days later from now
188+
inp_date.value = new Date(new Date().setDate(new Date().getDate() + 5))
189189
.toISOString()
190190
.split('T')[0];
191191
}

0 commit comments

Comments
 (0)