├── .gitattributes ├── LICENSE ├── Makefile ├── README.md ├── jquery.exitintent.js ├── jquery.exitintent.min.js └── test.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.min.js -diff 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/README.md -------------------------------------------------------------------------------- /jquery.exitintent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/jquery.exitintent.js -------------------------------------------------------------------------------- /jquery.exitintent.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/jquery.exitintent.min.js -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flaviovs/jquery.exitintent/HEAD/test.html --------------------------------------------------------------------------------