Skip to content

Commit 5b89458

Browse files
committed
update
1 parent 82fcf65 commit 5b89458

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

scripts/tiktok_batchDownload.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@
4141
padding: 20px;
4242
border-radius: 10px;
4343
max-width: 90vw;
44-
max-height: 90vh;
44+
height: 90vh;
4545
overflow-y: auto;
4646
overflow-x: hidden;
4747
display: flex;
4848
flex-direction: column;
49+
transition: all 0.3s ease;
4950
}
5051

5152
.ufs_popup .ufs_popup_header {

scripts/tiktok_batchDownload.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default {
7777
<div class="ufs_floating_btn" @click="showModal = true">📥 {{totalCount}}</div>
7878
<div class="ufs_container" v-if="showModal" @click.self="showModal = false">
7979
<div class="ufs_popup">
80-
<h1 style="text-align:center">Tiktok - Useful Scripts</h1>
80+
<h1 style="text-align:center">Tiktok - <a href="https://github.com/HoangTran0410/useful-script">Useful Scripts</a></h1>
8181
<h2 style="text-align:center">Found {{totalCount}} videos</h2>
8282
8383
<div class="ufs_popup_header">
@@ -166,10 +166,10 @@ export default {
166166
this.downloading.video +
167167
"/" +
168168
this.videosToShow.length +
169-
" videos"
169+
" video"
170170
);
171171
}
172-
return "Downloaded " + this.videosToShow.length + " videos";
172+
return "Downloaded " + this.videosToShow.length + " video";
173173
},
174174
audioTitle() {
175175
if (this.downloading.audio) {
@@ -178,10 +178,10 @@ export default {
178178
this.downloading.audio +
179179
"/" +
180180
this.uniqueAudio.length +
181-
" audios"
181+
" audio"
182182
);
183183
}
184-
return "Downloaded " + this.uniqueAudio.length + " audios";
184+
return "Downloaded " + this.uniqueAudio.length + " audio";
185185
},
186186
uniqueAudio() {
187187
const result = new Map();

0 commit comments

Comments
 (0)