mirror of
https://github.com/gigirassy/plaster.git
synced 2024-12-23 18:39:07 +00:00
8 lines
370 B
JavaScript
8 lines
370 B
JavaScript
document.getElementById('fetchBtn').addEventListener('click', async () => {
|
|
const urlInput = document.getElementById('pasteUrl').value;
|
|
|
|
// Perform a redirection by using the input URL directly
|
|
const redirectUrl = `/fetch-paste?url=${encodeURIComponent(urlInput)}`;
|
|
window.location.href = redirectUrl; // This redirects the user to the raw paste URL
|
|
});
|