mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-30 00:24:22 +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);
|
||
|
}
|
||
|
};
|