react-redux-toastr
Advanced tools
Comparing version 6.2.5 to 6.2.6
@@ -128,7 +128,7 @@ 'use strict'; | ||
this.confirmElement.classList.add(this.transitionIn); | ||
(0, _utils.isBrowser)() && document.querySelector('body').classList.add('toastr-confirm-active'); | ||
return; | ||
if ((0, _utils.isBrowser)()) return document.querySelector('body').classList.add('toastr-confirm-active'); | ||
} | ||
this.isHiding = true; | ||
this.confirmElement.classList.remove(this.transitionIn); | ||
this.confirmElement.classList.add(this.transitionOut); | ||
@@ -140,3 +140,3 @@ }; | ||
this.props.hideConfirm(); | ||
(0, _utils.isBrowser)() && document.querySelector('body').classList.remove('toastr-confirm-active'); | ||
if ((0, _utils.isBrowser)()) return document.querySelector('body').classList.remove('toastr-confirm-active'); | ||
}; | ||
@@ -143,0 +143,0 @@ |
{ | ||
"name": "react-redux-toastr", | ||
"version": "6.2.5", | ||
"version": "6.2.6", | ||
"description": "react-redux-toastr is a React toastr message implemented with Redux", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
121662