Skip to content

Commit

Permalink
fix: Typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lscambo13 committed Dec 28, 2023
1 parent 728223c commit 7ead17c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ window.createNewBookmark = () => {

const label = getDialogElementByID(bookmarkLabel);
label.setAttribute('maxlength', 4);
label.setAttribute('placeholder', 'eg. YT');
label.setAttribute('placeholder', 'e.g. YT');

const address = getDialogElementByID(bookmarkAddress);
address.setAttribute('placeholder', 'eg. youtube.com');
address.setAttribute('placeholder', 'e.g. youtube.com');
address.value = 'https://';

navigator.clipboard.readText().then((res) => {
Expand Down

0 comments on commit 7ead17c

Please sign in to comment.