Niggl 0ad2542742
All checks were successful
continuous-integration/drone/push Build is passing
Removed old gitlab ci related stuff
2020-10-30 23:27:19 +01:00
2020-08-29 18:42:14 +02:00
2020-08-29 18:42:14 +02:00
2020-10-30 23:12:57 +01:00
2020-08-29 16:25:32 +02:00
2020-08-29 18:42:14 +02:00
2020-08-29 18:42:14 +02:00
2020-10-30 23:15:31 +01:00

ODIT.Services - MailyMaily

A better mailto based on mailtoui.

🛠 Building

yarn && yarn build

Use

Example

Install

Via yarn/npm:

yarn add @odit/mailymaily
# Or
npm i @odit/mailymaily

Or just copy the file dist/mailymaily.js to your prefered folder.

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

<script src="node_modules/@odit/mailymaily/dist/mailymaily.min.js"></script>

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

    <script src="node_modules/@odit/mailymaily/dist/mailymaily.min.js" defer></script>
    <!-- or -->
    <script src="node_modules/@odit/mailymaily/dist/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>
Description
No description provided
Readme 17 MiB
2020-10-30 22:16:14 +00:00
Languages
JavaScript 79.5%
CSS 14.1%
HTML 6.4%