twister-react/build-buffer/common/EventListenerMixin.js
2015-04-29 11:19:10 +02:00

12 lines
302 B
JavaScript

module.exports = EventListenerMixin = function (eventtype) {
return {
componentDidMount: function() {
window.addEventListener(eventtype, this["on"+eventtype]);
},
componentWillUnmount: function() {
window.removeEventListener(eventtype, this["on"+eventtype]);
}
}
}