mailgo.dev!

This commit is contained in:
Matteo Manzinello 2020-07-10 10:47:11 +02:00
parent 4f7ab4a05e
commit faa801aa14
9 changed files with 13 additions and 13 deletions

View File

@ -1,6 +1,6 @@
# 💌 mailgo
## a new concept of `mailto` and `tel` links <https://mailgo.js.org>
## a new concept of `mailto` and `tel` links <https://mailgo.dev>
Transform all your `mailto` and `tel` link in a beautiful modal with more possibilities! Open directly Gmail, Outlook for mails; Telegram, WhatsApp or Skype for phone numbers.
@ -8,12 +8,12 @@ Transform all your `mailto` and `tel` link in a beautiful modal with more possib
## docs
<https://mailgo.js.org>
<https://mailgo.dev>
## thanks
<a target="_blank" href="https://www.browserstack.com">
<img src="https://mailgo.js.org/img/browserstack.png" />
<img src="https://mailgo.dev/img/browserstack.png" />
</a>
<br/>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
dist/mailgo.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -911,11 +911,11 @@ var mailgoIsShowing = function mailgoIsShowing() {
var byElement = function byElement() {
// by
var by = createElement(aHTMLTag);
by.href = "https://mailgo.js.org?ref=mailgo-modal";
by.href = "https://mailgo.dev?ref=mailgo-modal";
by.className = "m-by";
by.target = "_blank";
by.rel = "noopener noreferrer";
by.appendChild(createTextNode("mailgo.js.org"));
by.appendChild(createTextNode("mailgo.dev"));
return by;
}; // create element

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,7 @@
"bugs": {
"url": "https://github.com/manzinello/mailgo/issues"
},
"homepage": "https://mailgo.js.org",
"homepage": "https://mailgo.dev",
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",

View File

@ -818,11 +818,11 @@ const mailgoIsShowing = (type = MAIL_TYPE): boolean => {
const byElement = (): HTMLLinkElement => {
// by
let by: HTMLLinkElement = createElement(aHTMLTag) as HTMLLinkElement;
by.href = "https://mailgo.js.org?ref=mailgo-modal";
by.href = "https://mailgo.dev?ref=mailgo-modal";
by.className = "m-by";
by.target = "_blank";
by.rel = "noopener noreferrer";
by.appendChild(createTextNode("mailgo.js.org"));
by.appendChild(createTextNode("mailgo.dev"));
return by;
};