Socket
Socket
Sign inDemoInstall

toastify-js

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

toastify-js - npm Package Compare versions

Comparing version 1.11.0 to 1.11.1

4

CHANGELOG.md

@@ -5,2 +5,6 @@ # Changelog

## [1.11.1] - 2021-07-15
* Bugfix: IE11 support broke since style option #77
## [1.11.0] - 2021-04-25

@@ -7,0 +11,0 @@

2

package.json
{
"name": "toastify-js",
"version": "1.11.0",
"version": "1.11.1",
"description": "Toastify is a lightweight, vanilla JS toast notification library.",

@@ -5,0 +5,0 @@ "main": "./src/toastify.js",

@@ -6,3 +6,3 @@

[![toastify-js](https://img.shields.io/badge/toastify--js-1.11.0-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
[![toastify-js](https://img.shields.io/badge/toastify--js-1.11.1-brightgreen.svg)](https://www.npmjs.com/package/toastify-js)
![MIT License](https://img.shields.io/npm/l/toastify-js)

@@ -9,0 +9,0 @@

/*!
* Toastify js 1.11.0
* Toastify js 1.11.1
* https://github.com/apvarun/toastify-js

@@ -64,3 +64,3 @@ * @license MIT licensed

*/
this.version = "1.11.0";
this.version = "1.11.1";

@@ -67,0 +67,0 @@ /**

/*!
* Toastify js 1.11.0
* Toastify js 1.11.1
* https://github.com/apvarun/toastify-js

@@ -21,3 +21,3 @@ * @license MIT licensed

// Library version
version = "1.11.0";
version = "1.11.1";

@@ -128,3 +128,3 @@ // Set the default global options

// Loop through our style object and apply styles to divElement
for (const property in this.options.style) {
for (var property in this.options.style) {
divElement.style[property] = this.options.style[property];

@@ -131,0 +131,0 @@ }

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc