Skip to content

Commit cdd5a9e

Browse files
author
meow
committed
replace huphen-minus to real minus
1 parent c4cc50c commit cdd5a9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

assets/js/watch.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function toggle_parent(target) {
1414
target.textContent = '[ + ]';
1515
body.style.display = 'none';
1616
} else {
17-
target.textContent = '[ - ]';
17+
target.textContent = '[ ]';
1818
body.style.display = '';
1919
}
2020
}
@@ -26,7 +26,7 @@ function toggle_comments(event) {
2626
target.textContent = '[ + ]';
2727
body.style.display = 'none';
2828
} else {
29-
target.textContent = '[ - ]';
29+
target.textContent = '[ ]';
3030
body.style.display = '';
3131
}
3232
}
@@ -238,7 +238,7 @@ function get_reddit_comments(retries) {
238238
comments.innerHTML = ' \
239239
<div> \
240240
<h3> \
241-
<a href="javascript:void(0)">[ - ]</a> \
241+
<a href="javascript:void(0)">[ ]</a> \
242242
{title} \
243243
</h3> \
244244
<p> \
@@ -316,7 +316,7 @@ function get_youtube_comments(retries) {
316316
comments.innerHTML = ' \
317317
<div> \
318318
<h3> \
319-
<a href="javascript:void(0)">[ - ]</a> \
319+
<a href="javascript:void(0)">[ ]</a> \
320320
{commentsText} \
321321
</h3> \
322322
<b> \

0 commit comments

Comments
 (0)