Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
dcousens committed Aug 15, 2017
1 parent 01bda97 commit 414a05c
Show file tree
Hide file tree
Showing 7 changed files with 8,635 additions and 7,810 deletions.
7 changes: 6 additions & 1 deletion dist/react-tappable.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ var Mixin = {
};
},

componentDidMount: function componentDidMount() {
this.isMounted = true;
},

componentWillUnmount: function componentWillUnmount() {
this.isMounted = false;
this.cleanupScrollDetection();
this.cancelPressDetection();
this.clearActiveTimeout();
Expand Down Expand Up @@ -102,7 +107,7 @@ var Mixin = {
},

makeActive: function makeActive() {
if (!this.isMounted()) return;
if (!this.isMounted) return;
this.clearActiveTimeout();
this.setState({
isActive: true
Expand Down
2 changes: 1 addition & 1 deletion dist/react-tappable.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 414a05c

Please sign in to comment.