1.0.6 • Published 5 years ago

on-leave-intent v1.0.6

Weekly downloads
62
License
ISC
Repository
-
Last release
5 years ago

On Leave Content

User moving to close the page and it shows an alert modal

A script to detect if the user is leaving the page after some time and calls a function.

I know most of us don't like those modals that appears when we are leaving the page, but sometimes we need it. And this library is not only for that, you can call any function when the user leaves the page, so use your imagination.

Installing

Install the library via npm install on-leave-intent or yarn add on-leave-intent. Or you can even download the file here and load with the good and old way <script src="on-leave-intent.min.js"></script>.

How to use

If you used npm/yarn, just import the file:

import OnLeaveIntent from 'on-leave-intent';

And now you can use it like:

function callback() {
  console.log('A function to be called when user leaves the page');
}

const delay = 1000; // time in milliseconds defined to start tracking the user

const onLeaveIntent = new OnLeaveIntent(callback, delay);

Testing

You can see the tests on index.test.js, use yarn test to run the tests. If you want to see an example working on the Browser, just run yarn start.

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago