bharathpbhat / react-clickaway

Clickaway mixin for react, based on https://github.com/callemall work

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Clickaway

Mixin that adds a componentClickAway method to react components that fires the you click away from it.

Installation

npm install react-clickaway --save

Add it to your component

mixins: [
  require('react-clickaway')
]

And then just add the method:

componentClickAway: function() {
  console.log('Someone clicked outside this component...')
}

Thanks

This is just a modularized version of the https://github.com/callemall work, they used this script internally on material-ui.

About

Clickaway mixin for react, based on https://github.com/callemall work


Languages

Language:JavaScript 100.0%