Skip to content

Commit 414a05c

Browse files
committed
rebuild
1 parent 01bda97 commit 414a05c

File tree

7 files changed

+8635
-7810
lines changed

7 files changed

+8635
-7810
lines changed

dist/react-tappable.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,12 @@ var Mixin = {
7171
};
7272
},
7373

74+
componentDidMount: function componentDidMount() {
75+
this.isMounted = true;
76+
},
77+
7478
componentWillUnmount: function componentWillUnmount() {
79+
this.isMounted = false;
7580
this.cleanupScrollDetection();
7681
this.cancelPressDetection();
7782
this.clearActiveTimeout();
@@ -102,7 +107,7 @@ var Mixin = {
102107
},
103108

104109
makeActive: function makeActive() {
105-
if (!this.isMounted()) return;
110+
if (!this.isMounted) return;
106111
this.clearActiveTimeout();
107112
this.setState({
108113
isActive: true

dist/react-tappable.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)