le pepe
This commit is contained in:
parent
c04c7804c0
commit
324e842d3d
1 changed files with 7 additions and 3 deletions
10
index.html
10
index.html
|
|
@ -1456,9 +1456,13 @@ async function handleVote(proposalId, voteType) {
|
||||||
uploadLabel.className = 'meme-upload-label';
|
uploadLabel.className = 'meme-upload-label';
|
||||||
uploadLabel.setAttribute('for', 'meme-upload-input');
|
uploadLabel.setAttribute('for', 'meme-upload-input');
|
||||||
|
|
||||||
const uploadIcon = document.createElement('span');
|
const uploadIcon = document.createElement('img');
|
||||||
uploadIcon.className = 'meme-upload-icon';
|
uploadIcon.className = 'meme-upload-icon';
|
||||||
uploadIcon.textContent = '🖼️';
|
uploadIcon.src = 'https://radical.omar-c29.workers.dev/memes/pepe.jpg';
|
||||||
|
uploadIcon.alt = 'Pepe';
|
||||||
|
uploadIcon.style.width = '20px';
|
||||||
|
uploadIcon.style.height = '20px';
|
||||||
|
uploadIcon.style.marginRight = '8px';
|
||||||
|
|
||||||
const uploadText = document.createElement('span');
|
const uploadText = document.createElement('span');
|
||||||
uploadText.className = 'meme-upload-text';
|
uploadText.className = 'meme-upload-text';
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue