mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-02-05 03:24:29 +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);
|
||
|
}
|
||
|
};
|