diff --git a/.gitignore b/.gitignore index cd2946a..3d1204c 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,4 @@ $RECYCLE.BIN/ Network Trash Folder Temporary Items .apdisk +node_modules diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d03a0..50a556c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All the changes made to toastify-js library. +## [1.9.3] - 2020-10-10 + +* Offset IE11 compatibility #64 + ## [1.9.2] - 2020-09-24 * Bugfix: Max width problem for firefox browser #61 diff --git a/README.md b/README.md index 3399e73..783e803 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg) ![forthebadge](https://forthebadge.com/images/badges/built-with-love.svg) -[![toastify-js](https://img.shields.io/badge/toastify--js-1.9.2-brightgreen.svg)](https://www.npmjs.com/package/toastify-js) +[![toastify-js](https://img.shields.io/badge/toastify--js-1.9.3-brightgreen.svg)](https://www.npmjs.com/package/toastify-js) Toastify is a lightweight, vanilla JS toast notification library. @@ -328,6 +328,17 @@ If `gravity` is equals to `bottom`, it will be pushed from bottom. > + + + prousseau-korem
prousseau-korem
+ + diff --git a/package.json b/package.json index 1d7cc2d..55e3087 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "toastify-js", - "version": "1.9.2", + "version": "1.9.3", "description": "Toastify is a lightweight, vanilla JS toast notification library.", "main": "./src/toastify.js", diff --git a/src/toastify.css b/src/toastify.css index 9d2ad44..07ba8b7 100644 --- a/src/toastify.css +++ b/src/toastify.css @@ -1,5 +1,5 @@ /*! - * Toastify js 1.9.2 + * Toastify js 1.9.3 * https://github.com/apvarun/toastify-js * @license MIT licensed * diff --git a/src/toastify.js b/src/toastify.js index 23dcdec..1346c9b 100644 --- a/src/toastify.js +++ b/src/toastify.js @@ -1,5 +1,5 @@ /*! - * Toastify js 1.9.2 + * Toastify js 1.9.3 * https://github.com/apvarun/toastify-js * @license MIT licensed * @@ -18,7 +18,7 @@ return new Toastify.lib.init(options); }, // Library version - version = "1.9.2"; + version = "1.9.3"; // Defining the prototype of the object Toastify.lib = Toastify.prototype = {