Skip to content

Commit aacb042

Browse files
committedNov 4, 2024
chore : change button text content
1 parent ecd1f5b commit aacb042

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎content.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function addDiffButton() {
4646
}
4747

4848
function showButtonSuccess(button) {
49-
button.textContent = "Copied!";
49+
button.textContent = "Diffinity SUCCESS!";
5050
button.style.backgroundColor = "#2da44e";
5151
button.style.color = "white";
5252
setTimeout(() => {
@@ -57,7 +57,7 @@ function showButtonSuccess(button) {
5757
}
5858

5959
function showButtonError(button) {
60-
button.textContent = "Copy Failed";
60+
button.textContent = "Diffinity Failed";
6161
button.style.backgroundColor = "#cf222e";
6262
button.style.color = "white";
6363
setTimeout(() => {

0 commit comments

Comments
 (0)
Please sign in to comment.