mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-11 23:47:55 +00:00
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
module.exports = SetIntervalMixin = {
|
|
componentWillMount: function() {
|
|
this.intervals = [];
|
|
},
|
|
setInterval: function() {
|
|
this.intervals.push(setInterval.apply(null, arguments));
|
|
},
|
|
componentWillUnmount: function() {
|
|
this.intervals.map(clearInterval);
|
|
}
|
|
}; |