Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-onclickoutside

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-onclickoutside - npm Package Compare versions

Comparing version 0.1.1 to 0.2.0

2

bower.json
{
"name": "react-onclickoutside",
"version": "0.1.1",
"version": "0.2.0",
"description": "An onClickOutside mixin for React components",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -38,4 +38,4 @@ /**

componentDidMount: function() {
if(!this.onClickOutside)
throw new Error("Component lacks an onClickOutside function to handle outside click events.");
if(!this.handleClickOutside)
throw new Error("Component lacks a handleClickOutside(event) function for processing outside click events.");

@@ -58,3 +58,3 @@ var fn = (function(localNode, eventHandler) {

}
}(this.getDOMNode(), this.onClickOutside));
}(this.getDOMNode(), this.handleClickOutside));

@@ -61,0 +61,0 @@ document.addEventListener("click", fn);

{
"name": "react-onclickoutside",
"version": "0.1.1",
"version": "0.2.0",
"description": "An onClickOutside mixin for React components",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -19,3 +19,3 @@ # An onClickOutside mixin for React components

onClickOutside: function(evt) {
handleClickOutside: function(evt) {
// ...handling code goes here...

@@ -40,3 +40,3 @@ }

onClickOutside: function(evt) {
handleClickOutside: function(evt) {
// ...handling code goes here...

@@ -43,0 +43,0 @@ }

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