Go to file
Nicolai Ort a606878cbf Added README in addition to the example 2020-08-29 18:06:14 +02:00
dist Tried to fix icon alignment 2020-08-29 17:52:23 +02:00
src Tried to fix icon alignment 2020-08-29 17:52:23 +02:00
.gitignore 🧹 clean up build process 2020-08-29 16:25:32 +02:00
README.md Added README in addition to the example 2020-08-29 18:06:14 +02:00
gulpfile.js 🧹 some proper clean ups 2020-08-29 16:38:25 +02:00
index.html sample index.html 2020-08-29 16:55:49 +02:00
package.json Bump all dependencies 2020-08-29 16:52:16 +02:00

README.md

ODIT.Services - MailyMaily

A better mailto based on mailtoui

🛠 Building

yarn && yarn build

Use

Example

Basic: Link the dist file "mailymaily-min.js" at the bottom of your footer.

<script src="your/path/to/mailymaily-min.js"></script>

Alternatively: Add defer or async=false when linking in the header

    <script src="your/path/to/mailymaily-min.js" defer></script>
    <!-- or -->
    <script src="your/path/to/mailymaily-min.js" async=false></script>

VueJS & NuxtJs

Place the dist file "mailymaily-min.js" in the static folder. Link the dist file at the bottom of your layout, for example:

<template>
  <div>
    <Header />
    <Nuxt />
    <Footer />
    <script src="/libs/mailymaily-min.js"></script>
  </div>
</template>