You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Nicolai Ort 0ad2542742
continuous-integration/drone/push Build is passing Details
Removed old gitlab ci related stuff
2 years ago
dist proper naming conventions 3 years ago
src proper naming conventions 3 years ago
.drone.yml Switched to drone w/ gitlab sync 🚀 2 years ago
.gitignore 🧹 clean up build process 3 years ago
.npmignore Added files to be delivered/ignored to the package .json 📦 3 years ago
README.md Updated readme with the new installation instructions✏ 3 years ago
gulpfile.js proper naming conventions 3 years ago
index.html proper naming conventions 3 years ago
package.json Ready for new release 2 years ago

README.md

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>