mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
Do not show url scheme for short url
This commit is contained in:
parent
deeba64e74
commit
53ba9eb129
@ -23,7 +23,8 @@ const refreshData = async () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const displayData = async (data) => {
|
const displayData = async (data) => {
|
||||||
site = await siteName();
|
let site = await siteName();
|
||||||
|
site = site.replace(/(^\w+:|^)\/\//, '');
|
||||||
table_box = document.querySelector(".pure-table");
|
table_box = document.querySelector(".pure-table");
|
||||||
if (data.length == 0) {
|
if (data.length == 0) {
|
||||||
table_box.style.visibility = "hidden";
|
table_box.style.visibility = "hidden";
|
||||||
@ -62,7 +63,7 @@ const TR = (row, site) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const copyShortUrl = async (s) => {
|
const copyShortUrl = async (s) => {
|
||||||
site = await siteName();
|
const site = await siteName();
|
||||||
navigator.clipboard.writeText(`${site}/${s}`);
|
navigator.clipboard.writeText(`${site}/${s}`);
|
||||||
addAlertBox(`Short URL ${s} copied to clipboard!`, "green");
|
addAlertBox(`Short URL ${s} copied to clipboard!`, "green");
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user